]> git.donarmstrong.com Git - debhelper.git/blob - debian/rules
Add a Makefile and simplify this package's own rules file using all the new toys.
[debhelper.git] / debian / rules
1 #!/usr/bin/make -f
2 # Each debhelper command in this rules file has to be run using ./run,
3 # to ensure that the commands and libraries in the source tree are used,
4 # rather than the installed ones.
5
6 build:
7         ./run dh_auto_configure
8         ./run dh_auto_build
9         ./run dh_auto_test
10
11 clean:
12         ./run dh_testdir
13         ./run dh_testroot
14         ./run dh_auto_clean
15         ./run dh_clean
16
17 binary-indep: build
18         ./run dh_testdir
19         ./run dh_testroot
20         ./run dh_clean -k
21         ./run dh_installdocs
22         ./run dh_installexamples
23         ./run dh_installman
24         ./run dh_installchangelogs
25         ./run dh_link
26         ./run dh_compress
27         ./run dh_fixperms
28         ./run dh_perl
29         ./run dh_installdeb
30         ./run dh_gencontrol
31         ./run dh_md5sums
32         ./run dh_builddeb
33
34 # Not intended for use by anyone except the author.
35 announcedir:
36         @echo ${HOME}/src/joeywiki/code/debhelper/news
37
38 binary-arch:
39 binary: binary-indep binary-arch
40 .PHONY: build clean binary-indep binary-arch binary