File: rules

package info (click to toggle)
nfstrace 0.4.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 21,744 kB
  • sloc: cpp: 37,459; ansic: 2,281; sh: 357; makefile: 16
file content (26 lines) | stat: -rwxr-xr-x 594 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
#!/usr/bin/make -f

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

CXXFLAGS += -Wno-class-memaccess -Wno-ignored-qualifiers

%:
	dh $@

override_dh_auto_build-indep:
	dh_auto_build -- documentation

ifneq (,$(filter $(DEB_HOST_ARCH),sparc64 x32))
override_dh_auto_test-arch:
	dh_auto_test || true
endif

override_dh_auto_test-indep:

override_dh_auto_configure:
	dh_auto_configure -- -DGMOCK_SOURCE_DIR=/usr/src/gmock

override_dh_auto_install-indep:

.PHONY: override_dh_auto_configure override_dh_auto_build-indep override_dh_auto_test-indep override_dh_auto_install-indep