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
|