File: rules

package info (click to toggle)
libaudclient 3.5~rc2-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 636 kB
  • ctags: 401
  • sloc: sh: 3,866; ansic: 521; xml: 256; makefile: 57
file content (15 lines) | stat: -rwxr-xr-x 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)

# Do not link against unused libraries (make dpkg-shlibdeps happy).
export LDFLAGS := $(dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,--as-needed

%:
	dh $@ --with autotools_dev --with autoreconf --parallel

override_dh_auto_clean:
	dh_auto_clean || true

.PHONY: override_dh_auto_clean