File: rules

package info (click to toggle)
liboggz 1.1.1-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,348 kB
  • sloc: ansic: 14,332; sh: 10,385; makefile: 467
file content (15 lines) | stat: -rwxr-xr-x 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with bash-completion

ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
# Run our test suite until the upstream source get one
override_dh_auto_test:
	dh_auto_test
	for t in debian/tests/test-*; do \
	    BUILDDIR=`pwd` $$t; \
	done
endif