File: rules

package info (click to toggle)
sbc 1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,784 kB
  • sloc: ansic: 5,351; sh: 4,154; makefile: 51
file content (15 lines) | stat: -rwxr-xr-x 335 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

CONFIGURE_OPTION = --disable-tester --disable-silent-rules
# for armhf arch
ifeq ($(DEB_HOST_ARCH),armhf)
CONFIGURE_OPTION += --enable-high-precision
endif

%:
	dh $@ --exclude=.la

override_dh_auto_configure:
	dh_auto_configure -- $(CONFIGURE_OPTION)