Call autogen.sh instead of configure alone; and make cvs-clean instead
[tinc] / debian / rules
1 #!/usr/bin/make -f
2 # Sample debian/rules that uses debhelper.
3 # GNU copyright 1997 to 1999 by Joey Hess.
4
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7
8 # This is the debhelper compatability version to use.
9 export DH_COMPAT=1
10
11 build: build-stamp
12 build-stamp:
13         dh_testdir
14
15 #       # If the Makefile.in.in file in po/ already contains DESTDIR support, skip the patching.
16         cd `pwd`/po ; ( \
17           if ! grep DESTDIR Makefile.in.in > /dev/null ; then \
18             patch -Ns -p0 < `pwd`/../debian/po-Makefile.in.in.diff || true ;\
19           fi ;\
20         )
21
22         env CFLAGS='-O2 -Wall' ./autogen.sh --prefix=/usr --mandir=\$${prefix}/share/man \
23                 --infodir=\$${prefix}/share/info --sysconfdir=/etc --localstatedir=/var
24
25         $(MAKE)
26
27         touch build-stamp
28
29 clean:
30         dh_testdir
31         dh_testroot
32         rm -f build-stamp
33
34         -$(MAKE) cvs-clean
35
36         dh_clean
37
38 install: build
39         dh_testdir
40         dh_testroot
41         dh_clean -k
42         dh_installdirs
43
44         $(MAKE) install DESTDIR=`pwd`/debian/tmp
45         mkdir -p `pwd`/debian/tmp/etc/tinc/example
46         cp doc/tinc.conf.sample `pwd`/debian/tmp/etc/tinc/example/tinc.conf
47         ln -s /usr/share/doc/tinc/README.Debian `pwd`/debian/tmp/etc/tinc/example/README
48         cp debian/tinc-up debian/tmp/etc/tinc/example
49         cp debian/tinc-down debian/tmp/etc/tinc/example
50         chmod 700 debian/tmp/etc/tinc/example/tinc-up debian/tmp/etc/tinc/example/tinc-down
51
52
53 # Build architecture-independent files here.
54 binary-indep: build install
55 # We have nothing to do by default.
56
57 # Build architecture-dependent files here.
58 binary-arch: build install
59         dh_testdir
60         dh_testroot
61         dh_installdocs
62         dh_installexamples
63         dh_installinit
64         dh_installmanpages
65         dh_installinfo
66         dh_installchangelogs ChangeLog
67         dh_link
68         dh_strip
69         dh_compress
70         dh_fixperms
71         dh_installdeb
72         dh_perl
73         dh_shlibdeps
74         dh_gencontrol
75         dh_md5sums
76         dh_builddeb
77
78 binary: binary-indep binary-arch
79 .PHONY: build clean binary-indep binary-arch binary install