#!/usr/bin/make -f
# Made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.

package=latex2html
PREFIX = debian/tmp

build:
	$(checkdir)
	./configure --prefix=/usr
	$(MAKE) CFLAGS="-O2 -g -Wall"
	touch build

clean:
	$(checkdir)
	rm -f build
	-$(MAKE) distclean
	rm -f `find . -name "*~"`
	rm -rf debian/tmp debian/files* core debian/substvars

binary-indep: checkroot build
	$(checkdir)
# There are no architecture-independent files to be uploaded
# generated by this package.  If there were any they would be
# made here.

binary-arch: checkroot build
	$(checkdir)
	rm -rf debian/tmp
	install -d debian/tmp
	install -d debian/tmp/etc
	cd debian/tmp && install -d `cat ../dirs`
#	cp cfgcache.pm cfgcache.pm.org 
#	ised -e 's/\/usr\/local/\.\/debian\/tmp\/usr\/local/g' cfgcache.pm > cfgcache-2.pm
#	cp cfgcache-2.pm cfgcache.pm 
	$(MAKE) install 
#	mv cfgcache.pm.org cfgcache.pm 
	mv ./debian/tmp/usr/lib/latex2html/l2hconf.pm ./debian/tmp/etc/latex2html.conf
	cd ./debian/tmp/usr/lib/latex2html && ln -s ../../../etc/latex2html.conf l2hconf.pm
# Must have debmake installed for this to work. Otherwise please copy
# /usr/bin/debstd into the debian directory and change debstd to debian/debstd
	debstd BUGS Changes README README.patch-2002jp README.patch-99.1jp README.patch-dennou TODO readme.hthtml 
	dpkg-gencontrol -isp
	chown -R root:root debian/tmp
	chmod -R go=rX debian/tmp
	dpkg --build debian/tmp ..

define checkdir
	test -f debian/rules
endef

binary: binary-indep binary-arch

checkroot:
	$(checkdir)
	test root = "`whoami`"

.PHONY: binary binary-arch binary-indep clean checkroot
