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