]> git.donarmstrong.com Git - debhelper.git/blob - debian/rules
missed one
[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_auto_install
22         ./run dh_installdocs
23         ./run dh_installexamples
24         ./run dh_installman
25         ./run dh_installchangelogs
26         ./run dh_link
27         ./run dh_compress
28         ./run dh_fixperms
29         ./run dh_perl
30         ./run dh_installdeb
31         ./run dh_gencontrol
32         ./run dh_md5sums
33         ./run dh_builddeb
34
35 # Not intended for use by anyone except the author.
36 announcedir:
37         @echo ${HOME}/src/joeywiki/code/debhelper/news
38
39 binary-arch:
40 binary: binary-indep binary-arch
41 .PHONY: build clean binary-indep binary-arch binary