File: rules

package info (click to toggle)
vorbis-tools 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,548 kB
  • sloc: ansic: 30,216; sh: 5,342; makefile: 713; yacc: 291
file content (21 lines) | stat: -rwxr-xr-x 450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_strip:
	# can be dropped after buster
	dh_strip --dbgsym-migration='vorbis-tools-dbg (<< 1.4.0-11~)'

#CFLAGS = -Wall -g -I/usr/include/speex

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