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 30 31 32 33 34 35
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
BUILDDIR = $(CURDIR)/debian/build
# Include hardening flags for use in SWIG
include /usr/share/dpkg/buildflags.mk
%:
dh $@ --builddirectory=$(BUILDDIR)
override_dh_auto_configure:
dh_auto_configure -- \
-DUSE_SYSTEM_JSONCPP=ON \
-DCMAKE_CXX_FLAGS="$(CXXFLAGS) $(CPPFLAGS)" \
-DCMAKE_C_FLAGS="$(CFLAGS) $(CPPFLAGS)"
override_dh_auto_build-indep:
ifeq (,$(findstring nodoc,$(DEB_BUILD_PROFILES)))
dh_auto_build -- doc
endif
override_dh_auto_test-indep:
override_dh_auto_install-indep:
override_dh_installdocs-indep:
ifeq (,$(findstring nodoc,$(DEB_BUILD_PROFILES)))
dh_installdocs --indep
dh_doxygen --indep
endif
|