Git init
[external/iptables.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 LDFLAGS ?= 
13
14 # These are used for cross-compiling and for saving the configure script
15 # from having to guess our platform (since we know it already)
16 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
17 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
18
19
20 CFLAGS = -Wall -g
21 LDFLAGS += -Wl,--as-needed
22
23
24 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
25         CFLAGS += -O0
26 else
27         CFLAGS += -O2
28 endif
29
30 # shared library versions, option 1
31 version=2.0.5
32 major=2
33 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
34 #version=`ls src/.libs/lib*.so.* | \
35 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
36 #major=`ls src/.libs/lib*.so.* | \
37 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
38
39 config.status: configure
40         dh_testdir
41         # Add here commands to configure the package.
42         ./configure --prefix=/usr 
43         #--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
44 #--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) 
45
46 build: build-stamp
47
48 build-stamp:  config.status
49         dh_testdir
50
51         # Add here commands to compile the package.
52         $(MAKE)
53
54         touch $@
55
56 clean:
57         dh_testdir
58         dh_testroot
59         rm -f build-stamp 
60
61         # Add here commands to clean up after the build process.
62         -$(MAKE) distclean
63 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
64         cp -f /usr/share/misc/config.sub config.sub
65 endif
66 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
67         cp -f /usr/share/misc/config.guess config.guess
68 endif
69
70
71         dh_clean 
72
73 install: build
74         dh_testdir
75         dh_testroot
76         dh_clean -k 
77         dh_installdirs
78
79         # Add here commands to install the package into debian/tmp
80         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
81
82
83 # Build architecture-independent files here.
84 binary-indep: build install
85 # We have nothing to do by default.
86
87 # Build architecture-dependent files here.
88 binary-arch: build install
89         dh_testdir
90         dh_testroot
91         dh_installchangelogs 
92         dh_installdocs
93         dh_installexamples
94         dh_install --sourcedir=debian/tmp
95 #       dh_installmenu
96 #       dh_installdebconf       
97 #       dh_installlogrotate
98 #       dh_installemacsen
99 #       dh_installpam
100 #       dh_installmime
101 #       dh_installinit
102 #       dh_installcron
103 #       dh_installinfo
104         dh_installman
105         dh_link
106         dh_strip
107         dh_compress
108         dh_fixperms
109 #       dh_perl
110 #       dh_python
111         dh_makeshlibs
112         dh_installdeb
113         dh_shlibdeps
114         dh_gencontrol
115         dh_md5sums
116         dh_builddeb
117
118 binary: binary-indep binary-arch
119 .PHONY: build clean binary-indep binary-arch binary install