rules 423 Bytes
Newer Older
isaagar's avatar
isaagar committed
1 2
#!/usr/bin/make -f

sgk's avatar
sgk committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
build:

clean:
	dh_testdir
	dh_testroot
	dh_clean

binary-indep:
	dh_clean
	dh_testdir
	dh_testroot
	dh_installchangelogs
#	dh_installdocs
	cp data/* -a debian/`find debian/ -mindepth 1 -maxdepth 1 -type d | cut -d/ -f2`
	dh_fixperms
	dh_compress
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:

binary: binary-indep binary-arch

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