File: rules

package info (click to toggle)
spline 1.2-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 156 kB
  • ctags: 68
  • sloc: ansic: 355; makefile: 156; sh: 35
file content (13 lines) | stat: -rwxr-xr-x 346 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

# Enable additional hardening options for the binaries
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_test:
	# don't run the tests if suppressed with DEB_BUILD_OPTIONS=nocheck
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	export ASPLINE="$(CURDIR)/aspline" ; cd debian/tests ; ./runtests
endif