Files
openflow/debian/rules
T
Mikio Hara 695db2964e Change code base to Nicira's for-nox/0.4 branch
Remove monolithic OpenFlow switch.
Add userspace datapath.
Fix BUG#13: Revise check wildcards for in_port != out_port output
validation.
Fix BUG#30: Made use of get_jiffies_64 instead of jiffies.
Fix BUG#31: Fix NetFPGA crash in case of test_delete test harness run.
Fix BUG#32: Add stack depth limitation to avoid inifinite loop in
log_backtrace.
Fix BUG#33: Improve NetFPGA kernel extension and NetFPGA image to
support MAC address rewrite features (two actions) on NetFPGA enabled
OpenFlow switch.
Fix BUG#34: Add NetFPGA kernel extension source codes to create
distribution package with NetFPGA correctly.
Fix BUG#38: Improve regression test for FLOW_MOD ACTION SET_DL_SRC and
SET_DL_DST.
Fix BUG#39: Correct misunderstanding of byte order ops for OFPAT_XXX.
2009-06-29 05:02:16 -07:00

164 lines
4.2 KiB
Makefile
Executable File

#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
#
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
#
# Modified to make a template file for a multi-binary package with separated
# build-arch and build-indep targets by Bill Allombert 2001
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
# prefix of the target package name
PACKAGE=openflow-datapath-module
# modifieable for experiments or debugging m-a
MA_DIR ?= /usr/share/modass
# load generic variable handling
-include $(MA_DIR)/include/generic.make
# load default rules
-include $(MA_DIR)/include/common-rules.make
-include debian/rules.ext
DATAPATH_CONFIGURE_OPTS = --enable-snat
# Official build number. Leave set to 0 if not an official build.
BUILD_NUMBER = 0
configure: configure-stamp
configure-stamp:
dh_testdir
test -e configure || ./boot.sh
test -d _debian || mkdir _debian
cd _debian && ( \
test -e Makefile || \
../configure --prefix=/usr --localstatedir=/var --enable-ssl \
--with-build-number=$(BUILD_NUMBER) \
$(DATAPATH_CONFIGURE_OPTS))
$(ext_configure)
touch configure-stamp
#Architecture
build: build-arch build-indep
build-arch: build-arch-stamp
build-arch-stamp: configure-stamp
$(MAKE) -C _debian
$(ext_build_arch)
touch $@
build-indep: build-indep-stamp
build-indep-stamp: configure-stamp
$(MAKE) -C _debian dist distdir=openflow
$(ext_build_indep)
touch $@
clean:
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp configure-stamp
rm -rf _debian
[ ! -f Makefile ] || $(MAKE) distclean
$(ext_clean)
dh_clean
debconf-updatepo
MAJOR=$(shell echo $(KVERS) | sed -e 's/\(...\).*/\1/')
ifeq ($(MAJOR),2.6)
KO=k
l2x=l26
dpdir=datapath/linux-2.6
else
KO=
l2x=l24
dpdir=datapath/linux-2.4
endif
kdist_clean:
dh_clean
rm -rf openflow
kdist_config: prep-deb-files
binary-modules: DSTDIR = $(CURDIR)/debian/$(PKGNAME)/lib/modules/$(KVERS)
binary-modules: prep-deb-files
dh_testdir
dh_testroot
dh_clean -k
tar xzf openflow.tar.gz
cd openflow && ./configure --with-$(l2x)=$(KSRC) $(DATAPATH_CONFIGURE_OPTS) --with-build-number=$(BUILD_NUMBER)
cd openflow && $(MAKE) -C $(dpdir)
install -d -m755 $(DSTDIR)
install -m644 openflow/$(dpdir)/*_mod.$(KO)o $(DSTDIR)/
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb --destdir=$(DEB_DESTDIR)
install: install-indep install-arch
install-indep: build-indep
dh_testdir
dh_testroot
dh_clean -k -i
dh_installdirs -i
dh_install -i
cd debian/openflow-datapath-source/usr/src && tar -c modules | bzip2 -9 > openflow-datapath.tar.bz2 && rm -rf modules
install -m644 debian/openflow-pki-server.apache2 debian/openflow-pki-server/etc/apache2/sites-available/openflow-pki
install -m1777 -d debian/corekeeper/var/log/core
$(ext_install_indep)
install-arch: build-arch
dh_testdir
dh_testroot
dh_clean -k -s
dh_installdirs -s
$(MAKE) -C _debian DESTDIR=$(CURDIR)/debian/openflow install
cp debian/openflow-switch-config.overrides debian/openflow-switch-config/usr/share/lintian/overrides/openflow-switch-config
cp debian/openflow-switch.template debian/openflow-switch/usr/share/openflow/switch/default.template
dh_install -s
$(ext_install_arch)
# Must not depend on anything. This is to be called by
# binary-arch/binary-indep
# in another 'make' thread.
binary-common:
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_installdebconf
dh_installlogrotate
dh_installinit
dh_installcron
dh_installman
dh_link
dh_strip --dbg-package=openflow-dbg
dh_compress
dh_fixperms -X var/log/core
dh_perl
dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary-indep: install-indep
$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
binary-arch: install-arch
$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
binary: binary-arch binary-indep
.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure