e8b4a1dc68482034662af4c4bc6dc8f021011fb9
[iserv-mod-error-reporter.git] / debian / rules
1 #!/usr/bin/make -f
2 # rules for debuild
3
4 # needed for lintian
5 build:
6 dh_testdir
7
8 binary-indep:
9 [ ! -f Makefile ] || $(MAKE) clean
10 dh_clean
11
12 dh_testdir
13 dh_testroot
14 dh_clean -k
15 dh_installdirs
16 $(MAKE) DESTDIR=$(CURDIR)/debian/iserv-mod-error-reporter install
17
18 # we rather install the documentation via dh_installdocs
19 rm -rf $(CURDIR)/debian/iserv-mod-error-reporter/usr/share/doc/iserv-mod-error-reporter
20 dh_testdir
21 dh_testroot
22 dh_installchangelogs
23 dh_installdocs doc/changelog.old.html doc/TODO doc/source/
24 dh_compress
25 dh_fixperms
26 dh_installdeb
27 dh_gencontrol
28 dh_md5sums
29 dh_builddeb
30
31 # needed for lintian
32 binary-arch:
33
34 binary: binary-indep
35
36 clean:
37 dh_testdir
38 dh_testroot
39 [ ! -f Makefile ] || $(MAKE) clean
40 dh_clean
41
42 .PHONY: build clean binary-indep binary install
43
This page took 0.046193 seconds and 3 git commands to generate.