24c9850fef3f995d7501fc78b8a4bb2278e92428
[sliver-openvswitch.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 #
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 #
10 # Modified to make a template file for a multi-binary package with separated
11 # build-arch and build-indep targets  by Bill Allombert 2001
12
13 # Official build number.  Leave set to 0 if not an official build.
14 BUILD_NUMBER = 0
15
16 PACKAGE=openvswitch
17 pdkms=openvswitch-datapath-dkms
18 DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([0-9]:)*([^-]+).*,\2,p')
19 srcfiles := $(filter-out debian, $(wildcard * .[^.]*))
20
21 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
22 PARALLEL = -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
23 else
24 PARALLEL =
25 endif
26 MAKEFLAGS += $(PARALLEL)
27
28 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
29 CFLAGS += -O0
30 else
31 CFLAGS += -O2
32 endif
33
34 ifeq ($(BUILD_NUMBER),0)
35 BUILD_NUMBER_OPTION =
36 else
37 BUILD_NUMBER_OPTION = --with-build-number=$(BUILD_NUMBER)
38 endif
39
40 configure: configure-stamp
41 configure-stamp:
42         dh_testdir
43         test -e configure || ./boot.sh
44         test -d _debian || mkdir _debian
45         echo $(DEB_BUILD_OPTIONS)
46         echo $$CC
47         cd _debian && ( \
48                 test -e Makefile || \
49                 ../configure --prefix=/usr --localstatedir=/var --enable-ssl \
50                         --sysconfdir=/etc $(BUILD_NUMBER_OPTION) \
51                         CFLAGS="$(CFLAGS)" $(DATAPATH_CONFIGURE_OPTS))
52         touch configure-stamp
53
54 #Architecture 
55 build: build-arch build-indep
56
57 build-arch: build-arch-stamp
58 build-arch-stamp: configure-stamp 
59         $(MAKE) -C _debian
60 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
61         if $(MAKE) -C _debian check TESTSUITEFLAGS='$(PARALLEL)'; then :; \
62         else \
63                 cat _debian/tests/testsuite.log; \
64                 exit 1; \
65         fi
66 endif
67         touch $@
68
69 build-indep: build-indep-stamp
70 build-indep-stamp: configure-stamp 
71         $(MAKE) -C _debian dist distdir=openvswitch
72         touch $@
73
74 clean:
75         dh_testdir
76         dh_testroot
77         rm -f build-arch-stamp build-indep-stamp configure-stamp
78         rm -rf _debian
79         [ ! -f Makefile ] || $(MAKE) distclean
80         dh_clean 
81         rm -f python/ovs/*.pyc python/ovs/db/*.pyc
82
83 install: install-indep install-arch
84 install-indep: build-indep
85         dh_testdir
86         dh_testroot
87         dh_prep -i
88         dh_installdirs -i
89         $(MAKE) -C _debian DESTDIR=$(CURDIR)/debian/tmp install
90         dh_install -i
91         sed 's/^BUILD_NUMBER = .*/BUILD_NUMBER = $(BUILD_NUMBER)/' \
92                 < debian/rules.modules \
93                 > debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
94         chmod 755 debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
95         cd debian/openvswitch-datapath-source/usr/src && tar -c modules | bzip2 -9 > openvswitch-datapath.tar.bz2 && rm -rf modules
96
97         #dkms stuff
98         # setup the dirs
99         dh_installdirs -p$(pdkms) usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)
100
101         # copy the source
102         cd debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION) && tar xvzf $(CURDIR)/_debian/openvswitch.tar.gz && mv openvswitch/* . && rmdir openvswitch
103
104         # Prepare dkms.conf from the dkms.conf.in template
105         sed "s/__VERSION__/$(DEB_UPSTREAM_VERSION)/g" debian/dkms.conf.in > debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/dkms.conf
106
107         # We don't need the debian folder in there, just upstream sources...
108         rm -rf debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/debian
109         # We don't need the rhel stuff in there either
110         rm -rf debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/rhel
111         # And we should also clean useless license files, which are already
112         # descriped in our debian/copyright anyway.
113         rm -f debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/COPYING \
114                 debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/ovsdb/ovsdbmonitor/COPYING \
115                 debian/$(pdkms)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/xenserver/LICENSE
116
117 install-arch: build-arch
118         dh_testdir
119         dh_testroot
120         dh_prep -s
121         dh_installdirs -s
122         $(MAKE) -C _debian DESTDIR=$(CURDIR)/debian/tmp install
123         cp debian/openvswitch-switch.template debian/openvswitch-switch/usr/share/openvswitch/switch/default.template
124         dh_install -s
125
126 # Must not depend on anything. This is to be called by
127 # binary-arch/binary-indep
128 # in another 'make' thread.
129 binary-common:
130         dh_testdir
131         dh_testroot
132         dh_installchangelogs 
133         dh_installdocs
134         dh_installexamples
135         dh_installdebconf
136         dh_installlogrotate
137         dh_installinit -R
138         dh_installcron
139         dh_installman --language=C
140         dh_link
141         dh_strip --dbg-package=openvswitch-dbg
142         dh_compress 
143         dh_fixperms
144         dh_python2
145         dh_perl
146         dh_makeshlibs
147         dh_installdeb
148         dh_shlibdeps
149         dh_gencontrol
150         dh_md5sums
151         dh_builddeb
152 binary-indep: install-indep
153         $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
154 binary-arch: install-arch
155         $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
156
157 binary: binary-arch binary-indep
158 .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure
159
160 # This GNU make extensions disables parallel builds for the current Makefile
161 # but not for sub-Makefiles.  This is appropriate here because build-arch and
162 # build-indep both invoke "make" on OVS, which can update some of the same
163 # targets in ways that conflict (e.g. both update tests/testsuite).
164 .NOTPARALLEL: