#!/usr/bin/make -f # -*- makefile -*- # vi: ts=4 sw=4 noet # # debian/rules file that uses debhelper # Based on an autogenerated debhelper sample # # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) EXTRA_CMAKE_FLAGS = ifeq ($(DH_VERBOSE),1) EXTRA_CMAKE_FLAGS += -DCMAKE_VERBOSE_MAKEFILE=ON endif ifneq (,$(filter $(DEB_BUILD_ARCH_CPU),i386 amd64)) EXTRA_CMAKE_FLAGS += -DUSE_ASM_SCALERS=ON -DUSE_ASM_CORE=ON endif builddir/Makefile: dh_testdir # Add here commands to configure the package. mkdir -p builddir cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_FLAGS="$(CFLAGS)" -DCMAKE_LD_FLAGS="-Wl,-z,defs" -DCMAKE_CXX_FLAGS="$(CXXFLAGS)" -DCMAKE_SKIP_RPATH=ON $(EXTRA_CMAKE_FLAGS) build: build-stamp build-stamp: builddir/Makefile dh_testdir # Add here commands to compile the package. $(MAKE) -C builddir #docbook-to-man debian/vbam.sgml > vbam.1 touch $@ clean: dh_testdir dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. rm -rf builddir dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Add here commands to install the package into debian/vbam. $(MAKE) -C builddir DESTDIR=$(CURDIR)/debian/vbam install # Build architecture-independent files here. binary-indep: install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_python # dh_installinit # dh_installcron # dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms # dh_perl # dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install