File: rules

package info (click to toggle)
rtfilter 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, trixie, wheezy
  • size: 1,792 kB
  • ctags: 544
  • sloc: sh: 11,062; ansic: 2,317; makefile: 115
file content (32 lines) | stat: -rwxr-xr-x 877 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	export DEB_CFLAGS_MAINT_APPEND = -O3 -Wall -Wextra
else
	export DEB_CFLAGS_MAINT_APPEND = -Wall -Wextra
endif
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-Bsymbolic-functions
export DEB_BUILD_MAINT_OPTIONS=hardening=-all,+format,+relro,+bindnow

%:
	dh  $@ --with autoreconf

override_dh_auto_configure:
	dh_auto_configure -- --disable-matlab-tests

override_dh_installdocs:
	dh_installdocs --link-doc=librtfilter1

override_dh_strip:
	dh_strip --dbg-package=librtfilter1-dbg

# Workaround: Using dh_autoreconf and having moved config.h to src/
# folder makes src/config.h and src/stamp-h1 not to be cleaned correctly
# when running debclean. This fixes this.
override_dh_auto_clean:
	dh_auto_clean
	rm -f src/config.h src/stamp-h1