Minor cleanups in debian/rules for lintian
[anytun.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 CFLAGS = -Wall -g
13
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
15         CFLAGS += -O0
16 else
17         CFLAGS += -Os
18 endif
19
20 config.status:
21         dh_testdir
22         # Add here commands to configure the package.
23         cd src/ && ./configure
24
25 build: build-stamp
26
27 build-stamp:  config.status
28         dh_testdir
29
30         # Add here commands to compile the package.
31         $(MAKE) --directory=$(CURDIR)/src
32         cd src/man && $(MAKE)
33
34         touch $@
35
36 clean:
37         dh_testdir
38         dh_testroot
39         rm -f build-stamp
40
41         # Add here commands to clean up after the build process.
42         $(MAKE) --directory=$(CURDIR)/src distclean
43         dh_clean
44
45 install: build
46         dh_testdir
47         dh_testroot
48         dh_clean -k
49         dh_installdirs usr/bin usr/sbin usr/share/man/man8 etc/anytun etc/init.d/
50
51         # Add here commands to install the package into debian/anytun.
52         install $(CURDIR)/src/anytun            $(CURDIR)/debian/anytun/usr/sbin/
53         install $(CURDIR)/src/anytun-config     $(CURDIR)/debian/anytun/usr/bin/
54         install $(CURDIR)/src/anytun-controld   $(CURDIR)/debian/anytun/usr/bin/
55         install $(CURDIR)/src/anytun-showtables $(CURDIR)/debian/anytun/usr/bin/
56         # currently broken (known upstream):
57         # install $(CURDIR)/src/anyrtpproxy/anyrtpproxy $(CURDIR)/debian/anytun/usr/bin/
58         cp $(CURDIR)/src/man/*.8                $(CURDIR)/debian/anytun/usr/share/man/man8
59         install $(CURDIR)/etc/init.d/anytun     $(CURDIR)/debian/anytun/etc/init.d/
60         cp -a $(CURDIR)/etc/anytun              $(CURDIR)/debian/anytun/etc/
61
62 # Build architecture-independent files here.
63 binary-indep: build install
64 # We have nothing to do by default.
65
66 # Build architecture-dependent files here.
67 binary-arch: build install
68         dh_testdir
69         dh_testroot
70         dh_installchangelogs
71         dh_installdocs
72         dh_installexamples
73         dh_installman
74         dh_link
75         dh_strip
76         dh_compress
77         dh_fixperms
78         dh_installdeb
79         dh_shlibdeps
80         dh_gencontrol
81         dh_md5sums
82         dh_builddeb
83
84 binary: binary-indep binary-arch
85 .PHONY: build clean binary-indep binary-arch binary install