* debhelper v4
[filters.git] / debian / rules
1 #!/usr/bin/make -f
2
3 build: build-stamp
4 build-stamp:
5 dh_testdir
6 $(MAKE)
7 $(MAKE) samples
8 touch build-stamp
9
10 clean:
11 dh_testdir
12 dh_testroot
13 rm -f build-stamp
14 -$(MAKE) -i clean
15 dh_clean
16
17 binary-indep: build
18
19 binary-arch: build
20 dh_testdir
21 dh_testroot
22 dh_clean -k
23 dh_installdirs
24 $(MAKE) PREFIX=debian/filters install
25 dh_installdocs README SAMPLES ky00te.dir/README.ky00te
26 dh_installexamples
27 dh_installmenu
28 dh_installcron
29 dh_installmanpages
30 dh_installchangelogs
31 dh_strip
32 dh_compress
33 dh_fixperms
34 dh_installdeb
35 dh_shlibdeps
36 dh_gencontrol
37 dh_md5sums
38 dh_builddeb
39
40 binary: binary-indep binary-arch
41 .PHONY: build clean binary-indep binary-arch binary
This page took 0.021803 seconds and 5 git commands to generate.