#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) CFLAGS += -g -rdynamic CFLAGS += -Wall -Werror LDFLAGS ?= PREFIX ?= /usr DATADIR ?= /opt LDFLAGS += -Wl,--as-needed ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif config.status: configure dh_testdir # Add here commands to configure the package. DATAFS="$(PREFIX)" \ CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \ ./configure --prefix=$(PREFIX) configure: dh_testdir ./autogen.sh build: build-stamp build-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ cat $$f > $${f%.in}; \ sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \ sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \ done touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. -$(MAKE) distclean find -name Makefile.in -exec rm -rf {} \; rm -f aclocal.m4 config.guess config.h config.h.in config.sub configure depcomp install-sh ltmain.sh missing rm -rf m4 for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ rm -f $${f%.in}; \ done rm -f ../libnetwork-*.deb rm -f ../network_*.dsc rm -f ../network_*.changes rm -f ../libnetwork-*.deb rm -f ../network_*.tar.gz dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/. $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples dh_install --sourcedir=debian/tmp dh_installman dh_link dh_strip --dbg-package=libnetwork-dbg dh_compress dh_fixperms # dh_perl dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install