#!/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) TMP:=$(CURDIR)/debian/tmp include /usr/share/quilt/quilt.make ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) CFLAGS += -g endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: $(QUILT_STAMPFN) dh_testdir ln -sf /usr/share/misc/config.sub ln -sf /usr/share/misc/config.guess echo "0.11rc8+`cat .svnrevision`" > VERSION.txt echo "boxbackup" >> VERSION.txt sh -x ./bootstrap ./configure $(DEB_EXTRA_CONFIG_FLAGS) LDFLAGS="-Wl,--as-needed" touch configure-stamp build-stamp: configure-stamp dh_testdir $(MAKE) V=1 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) -./runtest.pl ALL endif touch build-stamp docs/docbook/instguide.pdf: $(MAKE) -C docs instguide cd docs/docbook && docbook2pdf instguide.xml docs/docbook/adminguide.pdf: configure-stamp $(MAKE) -C docs adminguide cd docs/docbook && docbook2pdf adminguide.xml docs: docs/docbook/instguide.pdf docs/docbook/adminguide.pdf $(MAKE) -C docs manpages build-arch: build-stamp build-indep: docs build: build-arch build-indep clean: clean-real unpatch clean-real: dh_testdir dh_testroot dh_clean build-stamp configure-stamp echo "USE_SVN_VERSION" > VERSION.txt echo "boxbackup" >> VERSION.txt [ ! -f Makefile ] || make clean sh debian/clean.sh dh_clean config.log config.status dh_clean config.sub config.guess install: DH_OPTIONS= install: build dh_testdir dh_testroot dh_prep dh_installdirs mkdir -p $(TMP)/etc/logcheck/ignore.d.workstation mkdir -p $(TMP)/etc/logcheck/ignore.d.server install -m 644 debian/boxbackup-server.logcheck.ignore $(TMP)/etc/logcheck/ignore.d.workstation/boxbackup-server install -m 644 debian/boxbackup-server.logcheck.ignore $(TMP)/etc/logcheck/ignore.d.server/boxbackup-server dh_install binary-indep: # no architecture independant packages are being built # Build architecture-dependent files here. binary-arch: build install dh_testdir -a dh_testroot -a dh_installdebconf -a dh_installdocs -a -A ExceptionCodes.txt docs/docbook/instguide.pdf docs/docbook/adminguide.pdf dh_installinit -a dh_installcron -a dh_installman dh_installchangelogs -a dh_strip -a dh_compress -a dh_fixperms -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-arch .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install docs