diff options
author | Francois Marier <francois@debian.org> | 2010-08-05 20:52:16 -0400 |
---|---|---|
committer | Francois Marier <francois@debian.org> | 2010-08-05 20:52:16 -0400 |
commit | 9fcb3bc29dfd429f521c4e40452197dc364310c3 (patch) | |
tree | d343c4aeb67a1cc4b00dfebf873937aa9cccf12a /debian-lenny/rules | |
parent | 1515145646c5aa80eb4c298607ea33da731ab586 (diff) |
Imported Upstream version 0.07.00upstream/0.07.00
Diffstat (limited to 'debian-lenny/rules')
-rwxr-xr-x | debian-lenny/rules | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/debian-lenny/rules b/debian-lenny/rules new file mode 100755 index 0000000..c886698 --- /dev/null +++ b/debian-lenny/rules @@ -0,0 +1,53 @@ +#!/usr/bin/make -f +## ---------------------------------------------------------------------------- + +## ---------------------------------------------------------------------------- +## uncomment this to turn on verbose mode + +# export DH_VERBOSE=1 + +## ---------------------------------------------------------------------------- + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) clean + rm -f $(CURDIR)/cil.1 + dh_clean + +build: build-stamp +build-stamp: + dh_testdir + [ ! -f Makefile ] || $(MAKE) + echo Doing MAN... + pod2man $(CURDIR)/bin/cil > $(CURDIR)/cil.1 + touch build-stamp + +binary: + dh_testdir + dh_testroot + + dh_install + dh_installdirs + dh_installdocs + dh_installdebconf + dh_installman + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + + dh_perl + + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep binary-arch + +.PHONY: clean install binary-indep binary-arch binary + +## ---------------------------------------------------------------------------- |