#!/usr/bin/make -f # -*- makefile -*- DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_LDFLAGS_MAINT_APPEND = -fvisibility=hidden # reduce debug info to fix FTBFS on archs with low address space ifneq (,$(filter $(DEB_HOST_ARCH), mips mipsel)) export DEB_CFLAGS_MAINT_APPEND = -g1 export DEB_CXXFLAGS_MAINT_APPEND = -g1 endif # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # deduce documentation option (build-indep target) ifeq "" "$(filter %-doc,$(shell dh_listpackages))" BUILDDOC = OFF else BUILDDOC = ON endif .PHONY: override_dh_strip override_dh_shlibdeps override_dh_auto_test %: dh $@ override_dh_auto_configure: dh_auto_configure -- \ -DALWAYS_CREATE_DOC=$(BUILDDOC) \ -DSTRICT_DEPENDECIES=ON \ -DMIA_CREATE_MANPAGES=ON \ -DMIA_CREATE_USERDOC=$(BUILDDOC) \ -DMIA_CREATE_NIPYPE_INTERFACES=OFF \ -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF # dh_strip detects executable files, so make *.mia files executable then strip then # remove the executable flag override_dh_strip: `pwd`/debian/run_strip override_dh_auto_build-indep: dh_auto_build -- doc override_dh_auto_build-arch: dh_auto_build override_dh_auto_install-indep: # Install process expects some files that are not built in arch all builds dh_auto_install -i || true override_dh_shlibdeps: dh_shlibdeps -- $(shell find debian/libmia-2.4-4/ -name "*.mia") override_dh_missing: find debian/tmp \( -name "*-doc.desktop" -o -name COPYING \) -delete dh_missing