#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # # $Id: rules,v 1.7 2007/12/20 14:21:19 paka Exp $ # # History: # -------- # 2008-02-06 stolen from SER and adapted for SEMS (stefan) # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 # This is the debhelper compatibility version to use. # export DH_COMPAT=4 # -- already set in compat # force no striping (always include debug symbols for now) export DEB_BUILD_OPTIONS:="$(DEB_BUILD_OPTIONS) nostrip" PYTHON_MODULES=ivr py_sems conf_auth mailbox pin_collect EXCLUDED_MODULES=mp3 examples gateway CPPFLAGS += -DHAVE_XMLRPCPP_SSL -DHAVE_OLD_SPANDSP_CALLBACK ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) CFLAGS += -g endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. USE_SPANDSP=yes CPPFLAGS="$(CPPFLAGS)" $(MAKE) cfg-target=/etc/sems/ prefix=/usr exclude_modules="$(EXCLUDED_MODULES)" DESTDIR=$(CURDIR)/debian/sems #/usr/bin/docbook-to-man debian/ser.sgml > ser.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/sems $(MAKE) -C core/ exclude_modules="$(EXCLUDED_MODULES)" install \ DESTDIR=$(CURDIR)/debian/sems \ prefix=/usr \ cfg-target=/etc/sems/ $(MAKE) -C apps/ install exclude_modules="$(EXCLUDED_MODULES) $(PYTHON_MODULES)" \ DESTDIR=$(CURDIR)/debian/sems \ prefix=/usr \ cfg-target=/etc/sems/ # fix etc/ser dir location # mv -f $(CURDIR)/debian/ser/usr/etc $(CURDIR)/debian/ser # install only the python modules $(MAKE) -C apps/ install modules="$(PYTHON_MODULES)" \ DESTDIR=$(CURDIR)/debian/sems-python-modules \ prefix=/usr \ cfg-target=/etc/sems/ # This single target is used to build all the packages, all at once, or # one at a time. So keep in mind: any options passed to commands here will # affect _all_ packages. Anything you want to only affect one package # should be put in another target, such as the install target. binary-common: dh_testdir dh_testroot dh_installdebconf dh_installdocs doc/Readme.* dh_installexamples dh_installmenu # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime dh_installinit -- defaults 23 dh_installcron dh_installman dh_installinfo # dh_undocumented dh_installchangelogs dh_link dh_strip dh_compress dh_fixperms # dh_makeshlibs dh_installdeb # dh_perl dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # Build architecture-independent packages using the common target binary-indep: build install # (Uncomment this next line if you have such packages.) # $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common # We have nothing to do by default. # Build architecture-dependent packages using the common target binary-arch: build install $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common # Any other binary targets build just one binary package at a time. binary-%: build install $(MAKE) -f debian/rules binary-common DH_OPTIONS=-p$* binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure