2015-10-01 19:35:45 +02:00
|
|
|
#!/usr/bin/make -f
|
2016-01-03 15:07:53 +01:00
|
|
|
|
2015-10-01 19:35:45 +02:00
|
|
|
# output every command that modifies files on the build system.
|
|
|
|
#export DH_VERBOSE = 1
|
|
|
|
|
|
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
|
|
|
2015-11-28 14:43:03 +01:00
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
2015-10-01 19:35:45 +02:00
|
|
|
|
|
|
|
%:
|
2015-10-08 13:28:23 +02:00
|
|
|
dh $@ --parallel
|
2015-10-01 19:35:45 +02:00
|
|
|
|
2015-12-30 20:43:14 +01:00
|
|
|
# dh_auto_clean tries to "make distclean", but we don't have that target.
|
|
|
|
override_dh_auto_clean:
|
|
|
|
test ! -e Makefile || $(MAKE) clean
|