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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export DEB_PKG_VERSION = $(shell dpkg-parsechangelog -S Version)
## inspired from mpfr material
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
CXXCFLAGS += -O0
else ifeq ($(DEB_HOST_ARCH),alpha)
CFLAGS += -mieee
CXXFLAGS += -mieee
else ifeq ($(DEB_HOST_ARCH),sha4)
CFLAGS += -mieee
CXXFLAGS += -mieee
else
CFLAGS := $(subst -O2,-O3,$(CFLAGS))
CXXFLAGS := $(subst -O2,-O3,$(CXXFLAGS))
endif
default:
@uscan --no-conf --dehs --report || true
%:
dh $@ --with autoreconf --builddirectory=_build --parallel
override_dh_auto_configure:
dh_auto_configure -- --enable-maintainer-mode
override_dh_auto_build-indep: README.implementation
$(MAKE) -f debian/adhoc/Makefile doc
override_dh_auto_test-indep:
true
override_dh_prep-arch: README.implementation
override_dh_auto_install-indep:
$(MAKE) -C _build install-data-am DESTDIR=$(CURDIR)/debian/tmp
override_dh_installdocs:
dh_installdocs -pprimesieve-bin --link-doc=libprimesieve7
dh_installdocs -plibprimesieve7-dev --link-doc=libprimesieve7-dev-common
dh_installdocs --remaining-packages
override_dh_compress-indep:
dh_compress -X.pdf -Xexamples
get-orig-source:
uscan --no-conf --download-current-version --compression xz --verbose
README.implementation:
cp -p src/primesieve/README README.implementation
|