File: rules

package info (click to toggle)
libaudclient 3.5~rc2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 636 kB
  • sloc: sh: 3,866; ansic: 521; xml: 256; makefile: 57
file content (15 lines) | stat: -rwxr-xr-x 391 bytes parent folder | download | duplicates (2)
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 $@

override_dh_auto_clean:
	dh_auto_clean || true

.PHONY: override_dh_auto_clean