Add user handling, support for wireshark-lua + debian/anytun.default; Update changelo...
[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/ usr/share/anytun
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         cp -a $(CURDIR)/wireshark-lua           $(CURDIR)/debian/anytun/usr/share/anytun/
62
63 # Build architecture-independent files here.
64 binary-indep: build install
65 # We have nothing to do by default.
66
67 # Build architecture-dependent files here.
68 binary-arch: build install
69         dh_testdir
70         dh_testroot
71         dh_installchangelogs
72         dh_installdocs
73         dh_installexamples
74         dh_installinit
75         dh_installman
76         dh_link
77         dh_strip
78         dh_compress
79         dh_fixperms
80         dh_installdeb
81         dh_shlibdeps
82         dh_gencontrol
83         dh_md5sums
84         dh_builddeb
85
86 binary: binary-indep binary-arch
87 .PHONY: build clean binary-indep binary-arch binary install