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
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
export DEB_CFLAGS_MAINT_APPEND:=-Wall
else
export DEB_CFLAGS_MAINT_APPEND:=-Wall -ffunction-sections
endif
PACKAGE=$(shell dh_listpackages)
# NetCDF >= 4.3.3.1 uses Multi-Arch path
include /usr/share/dpkg/architecture.mk
export NETCDF_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
%:
dh $@
override_dh_auto_build:
LD_RUN_PATH="" dh_auto_build
override_dh_auto_test:
TEST_VERBOSE=1 DISPLAY="" dh_auto_test
override_dh_installdocs:
dh_installdocs README
override_dh_installchangelogs:
dh_installchangelogs Changes
|