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
|
#!/usr/bin/make -f
# -*- makefile -*-
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
BUILDHOME = $(CURDIR)/debian/build
.PHONY: override_dh_auto_configure \
override_dh_auto_test \
override_dh_clean
override_dh_auto_configure:
dh_auto_configure -- \
-DUSE_EXTERNAL_TINYXML2:BOOL=True
override_dh_clean:
dh_clean
rm -rf $(BUILDHOME)
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
mkdir -p $(BUILDHOME)
HOME=$(BUILDHOME) dh_auto_test --no-parallel
endif
%:
dh $@ --buildsystem=cmake
|