install gpglist and all manpages
[pgp-tools.git] / debian / rules
1 #!/usr/bin/make -f
2
3 configure: configure-stamp
4 configure-stamp:
5 dh_testdir
6 touch $@
7
8 build: build-stamp
9 build-stamp: configure-stamp
10 dh_testdir
11 $(MAKE)
12 touch $@
13
14 clean:
15 dh_testdir
16 dh_testroot
17 $(MAKE) clean
18 rm -f build-stamp configure-stamp
19 dh_clean
20
21 install: build
22 dh_testdir
23 dh_testroot
24 dh_clean -k
25 dh_installdirs
26 dh_install
27 dh_installman */*.1
28
29 binary-indep: build install
30 dh_testdir
31 dh_testroot
32 dh_installdocs
33 dh_installexamples
34 dh_installmenu
35 dh_installcron
36 dh_installinfo
37 dh_installchangelogs
38 dh_compress
39 dh_fixperms
40 dh_installdeb
41 dh_shlibdeps
42 dh_gencontrol
43 dh_md5sums
44 dh_builddeb
45
46 # Build architecture-dependent files here.
47 binary-arch: build install
48
49 binary: binary-indep
50 .PHONY: build clean binary-indep binary-arch binary install configure