#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This has to be exported to make some magic below work. export DH_OPTIONS # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif build: build-stamp build-stamp: dh_testdir ./bootstrap ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --enable-scribo --prefix=/usr --libexecdir=/usr/lib $(MAKE) touch $@ clean: dh_testdir dh_testroot rm -f build-arch-stamp build-indep-stamp #CONFIGURE-STAMP# [ ! -f Makefile ] || $(MAKE) distclean rm -f config.{sub,guess,status,log} dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) DESTDIR="$(CURDIR)/debian/tmp" install # Build architecture independant packages. build-indep: build install dh_testdir dh_testroot dh_installchangelogs -i dh_installdocs -i dh_install -i --sourcedir=$(CURDIR)/debian/tmp dh_link -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i # Build architecture dependant packages. build-arch: build install dh_testdir dh_testroot dh_installchangelogs -a dh_installdocs -a dh_installexamples -a dh_install -a --sourcedir=$(CURDIR)/debian/tmp dh_installmenu -a install -d $(CURDIR)/debian/hello/usr/share/pixmaps/ cp debian/*.xpm $(CURDIR)/debian/hello/usr/share/pixmaps/ install -d $(CURDIR)/debian/hello/usr/share/applications/ cp debian/*.desktop $(CURDIR)/debian/hello/usr/share/applications/ #dh_installmime -a dh_installman -a dh_link -a dh_strip -a dh_compress -a dh_fixperms -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: build-arch build-indep .PHONY: install build clean build-indep build-arch binary