1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS=hardening=+all,-pie
include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/buildflags.mk
CFLAGS += $(CPPFLAGS)
export CFLAGS LDFLAGS
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CONFIG = debug
else
CONFIG = release
endif
ARGS = config=$(CONFIG) VERBOSE=1 PREFIX=/usr LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
%:
dh $@
override_dh_auto_build-arch:
$(MAKE) $(ARGS)
override_dh_auto_install-arch:
$(MAKE) $(ARGS) DESTDIR=$(CURDIR)/debian/tmp install
override_dh_auto_test:
$(MAKE) VERBOSE=1 test
|