new announcement system
[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_installchangelogs
27 dh_strip
28 dh_compress
29 dh_fixperms
30 dh_installdeb
31 dh_shlibdeps
32 dh_gencontrol
33 dh_md5sums
34 dh_builddeb
35
36 # Not intended for use by anyone except the author.
37 announcedir:
38 @echo ${HOME}/src/joeywiki/code/filters/news
39
40 binary: binary-indep binary-arch
41 .PHONY: build clean binary-indep binary-arch binary
This page took 0.021787 seconds and 5 git commands to generate.