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=+all
.PHONY: override_dh_auto_configure \
override_dh_auto_build-indep \
override_dh_auto_test-indep \
override_dh_auto_test
override_dh_auto_configure:
dh_auto_configure -- \
-DUSE_HOST_CFLAGS:BOOL=False \
-DUSE_UPSTREAM_CFLAGS:BOOL=False
override_dh_auto_build-indep:
dh_auto_build -- doc # Generate documentation.
override_dh_auto_test-arch:
HOME=$(CURDIR) LC_ALL=POSIX dh_auto_test
# No test can be done without the binaries
override_dh_auto_test-indep:
%:
dh $@ --build-system=cmake
|