X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Frules;h=2bd4939551392df9945d1dec60e51c3e91200aa4;hp=ca1225783a4a61882b8430c0eed03fac4b2a616c;hb=59a0a487d5eaeca18593af9d2ca21cd66184431d;hpb=1f66030ebaa071c30d0057864167256f662512f5 diff --git a/debian/rules b/debian/rules index ca12257..2bd4939 100755 --- a/debian/rules +++ b/debian/rules @@ -2,17 +2,29 @@ include /usr/share/quilt/quilt.make +# Parsing of DEB_BUILD_OPTIONS flags. +# Note that nostrip is handled automatically by debhelper. +CFLAGS := -g -Wall +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) +endif + # Temporary root DEBTMP := $(CURDIR)/debian/tmp build: patch build-stamp build-stamp: dh_testdir - CFLAGS="-g -O2 -Wall" ./configure \ + CFLAGS="$(CFLAGS)" ./configure \ --mandir='$${prefix}/share/man' \ - --enable-secure-statd \ --with-tcp-wrappers - $(MAKE) + $(MAKE) $(MAKEFLAGS) touch build-stamp clean: unpatch @@ -39,9 +51,10 @@ binary-arch: build dh_installman dh_link dh_installchangelogs ChangeLog - #dh_strip + dh_strip dh_compress - dh_fixperms -Xmount.nfs + dh_fixperms + chmod u+s debian/nfs-common/sbin/mount.nfs dh_installdeb dh_shlibdeps dh_gencontrol