#! /usr/bin/make -f LDFLAGS = CFLAGS = -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) LDFLAGS += -s endif ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(NUMJOBS) endif build: # Builds the binary package. dh_testdir $(MAKE) CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" touch build clean: # Undoes the effect of `make -f debian/rules build'. dh_testdir dh_auto_clean dh_clean build debian/substvars binary: binary-arch binary-indep binary-indep: dh_testdir binary-arch: build dh_testdir # Makes a binary package. dh_installdirs dh_auto_install dh_strip dh_link dh_installdocs dh_installchangelogs dh_compress dh_lintian dh_fixperms dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb