update changelog
[debian/tar] / debian / rules
1 #!/usr/bin/make -f
2
3 export DH_VERBOSE=1
4
5 configure: configure-stamp
6 configure-stamp:
7         dh_testdir
8         touch configure-stamp
9
10 build: build-stamp
11
12 build-stamp: configure-stamp 
13         dh_testdir
14         touch $@
15
16 clean:
17         dh_testdir
18         dh_testroot
19         rm -f build-stamp configure-stamp
20         dh_clean 
21
22 install: build
23         dh_testdir
24         dh_testroot
25         dh_clean -k 
26         dh_installdirs
27         # the real work is mostly done by dh_installinfo
28         cp debian/vrms debian/tar-doc/usr/share/vrms/reasons/tar-doc
29
30 # Build architecture-independent files here.
31 binary-indep: build install
32         dh_testdir
33         dh_testroot
34         dh_installchangelogs 
35         dh_installdocs
36         dh_installinfo
37         dh_compress
38         dh_fixperms
39         dh_installdeb
40         dh_gencontrol
41         dh_md5sums
42         dh_builddeb
43
44 # Build architecture-dependent files here.
45 binary-arch: build install
46
47 binary: binary-indep binary-arch
48 .PHONY: build clean binary-indep binary-arch binary install configure