#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 include /usr/share/dpkg/architecture.mk ifeq ($(DEB_BUILD_ARCH_OS),kfreebsd) SCONS_OPTS:=with_linuxevdev=no with_linuxusbmouse=no endif DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk configure: configure-stamp configure-stamp: dh_testdir touch $@ build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: configure-stamp dh_testdir scons $(SCONS_OPTS) CPPFLAGS='$(CPPFLAGS)' CXXFLAGS='$(CXXFLAGS)' \ LINKFLAGS='$(LDFLAGS)' touch $@ clean: clean-patched dh_testdir dh_testroot dh_clean clean-patched: dh_testdir dh_testroot scons -c CPPFLAGS='$(CPPFLAGS)' CXXFLAGS='$(CXXFLAGS)' \ LINKFLAGS='$(LDFLAGS)' rm -f build-stamp configure-stamp rm -f config.log .sconsign.dblite rm -rf .sconf_temp build/ install: build dh_testdir dh_testroot dh_prep -a dh_installdirs # Build architecture-independent files here. binary-indep: dh_testdir dh_testroot dh_prep -i dh_installchangelogs -i NEWS dh_installdocs -i --exclude=pingus.6 mkdir -p "$(CURDIR)/debian/pingus-data/usr/share/games/pingus/" find data/ \ -type f -a \( \ -name "*.png" -o \ -name "*.jpg" -o \ -name "*.wav" -o \ -name "*.scm" -o \ -name "*.font" -o \ -name "*.story" -o \ -name "*.credits" -o \ -name "*.prefab" -o \ -name "*.it" -o \ -name "*.ogg" -o \ -name "*.s3m" -o \ -name "*.po" -o \ -name "*.worldmap" -o \ -name "*.res" -o \ -name "*.pingus" -o \ -name "*.levelset" -o \ -name "*.sprite" \ \) -exec cp --parents -v {} "$(CURDIR)/debian/pingus-data/usr/share/games/pingus/" \; dh_install -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs -a NEWS dh_installdocs -a --exclude=man/* --exclude=html/* dh_installexamples -a dh_install -a dh_installmenu -a dh_installman -a doc/man/pingus.6 dh_link -a dh_strip -a dh_compress -a dh_fixperms -a # dh_makeshlibs -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure