diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-10-17 16:41:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2007-10-17 16:41:33 -0400 |
commit | f102c1b3160e304e086544652e166e884547616b (patch) | |
tree | 7b4735807c5f83afaa0394baff79bda5a7fb44d7 /debian/rules | |
parent | 06e0658a5b55950b0dac6dc29c8398b8175c1993 (diff) |
add
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cc95420 --- /dev/null +++ b/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f + +build: + +clean: + dh_testdir + dh_testroot + dh_clean + +binary-arch: build + +binary-indep: build + dh_testdir + dh_testroot + dh_clean -k + dh_install + dh_installdocs + dh_installexamples + dh_installman + dh_installchangelogs + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary |