Conversion to struct addrinfo is almost complete for this file.
[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
46         cp -a doc/sample-config.tar.gz `pwd`/debian/tmp/etc/tinc/example
47         cd `pwd`/debian/tmp/etc/tinc/example && tar xzf sample-config.tar.gz && rm sample-config.tar.gz
48         ln -s /usr/share/doc/tinc/README.Debian `pwd`/debian/tmp/etc/tinc/example/README
49
50
51 # Build architecture-independent files here.
52 binary-indep: build install
53 # We have nothing to do by default.
54
55 # Build architecture-dependent files here.
56 binary-arch: build install
57         dh_testdir
58         dh_testroot
59         dh_installdocs
60         dh_installexamples
61         dh_installinit
62         dh_installmanpages
63         dh_installmodules
64         dh_installinfo
65         dh_installchangelogs ChangeLog
66         dh_link
67         dh_strip
68         dh_compress
69         dh_fixperms
70         dh_installdeb
71         dh_perl
72         dh_shlibdeps
73         dh_gencontrol
74         dh_md5sums
75         dh_builddeb
76
77 binary: binary-indep binary-arch
78 .PHONY: build clean binary-indep binary-arch binary install