1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
#export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
# Our sourcefiles are in the 'src' directory. Only queue the
# build processes in the src folder (instead of everthing)
override_dh_auto_build:
dh_auto_build --sourcedir=src
override_dh_auto_clean:
dh_auto_clean --sourcedir=src
override_dh_auto_install:
dh_auto_install --sourcedir=src
override_dh_auto_installdocs:
dh_auto_installdocs --sourcedir=src
override_dh_strip_nondeterminism:
# For some reason, debhelper isn't stripping the binary too
dh_strip && dh_strip_nondeterminism
|