Initial Debian packaging; rm src/win32/#winService.cpp#
[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         find . -name "*.o" -exec rm {} \;
44         dh_clean
45
46 install: build
47         dh_testdir
48         dh_testroot
49         dh_clean -k
50         dh_installdirs usr/bin usr/sbin usr/share/man/man8 etc/anytun etc/init.d/
51
52         # Add here commands to install the package into debian/anytun.
53         #$(MAKE) prefix=$(CURDIR)/debian/anytun/usr install
54         install $(CURDIR)/src/anytun $(CURDIR)/debian/anytun/usr/sbin/
55         install $(CURDIR)/src/anytun-config     $(CURDIR)/debian/anytun/usr/bin/
56         install $(CURDIR)/src/anytun-controld   $(CURDIR)/debian/anytun/usr/bin/
57         install $(CURDIR)/src/anytun-showtables $(CURDIR)/debian/anytun/usr/bin/
58         # install $(CURDIR)/src/anyrtpproxy/anyrtpproxy $(CURDIR)/debian/anytun/usr/bin/
59         cp $(CURDIR)/src/man/*.8   $(CURDIR)/debian/anytun/usr/share/man/man8
60         install $(CURDIR)/etc/init.d/anytun $(CURDIR)/debian/anytun/etc/init.d/
61         cp -a $(CURDIR)/etc/anytun $(CURDIR)/debian/anytun/etc/
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_installman
75         dh_link
76         dh_strip
77         dh_compress
78         dh_fixperms
79         dh_installdeb
80         dh_shlibdeps
81         dh_gencontrol
82         dh_md5sums
83         dh_builddeb
84
85 binary: binary-indep binary-arch
86 .PHONY: build clean binary-indep binary-arch binary install