#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # This file is public domain software, originally written by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS=-Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) STRIP=y endif config.status: configure dh_testdir cp -f /usr/share/misc/config.guess config.guess cp -f /usr/share/misc/config.sub config.sub CPPFLAGS=`glib-config --cflags` CFLAGS="${CFLAGS}" \ dh_auto_configure build: build-stamp build-stamp: config.status dh_testdir $(MAKE) touch $@ autofiles: #libtoolize --automake --copy --force #aclocal #autoheader #automake --add-missing #autoconf autoreconf -f -i -v rm -rf autom4te.cache clean: dh_testdir dh_testroot dh_clean rm -f build-stamp build [ ! -f Makefile ] || $(MAKE) distclean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp dh_install --sourcedir=debian/tmp --list-missing binary-indep: build install # There are no architecture-independent files to be uploaded # generated by this package. If there were any they would be # made here. binary-arch: build install dh_testdir -a dh_testroot -a dh_installchangelogs -a dh_installdocs -a dh_installmenu -a dh_installman -a dh_link -a dh_makeshlibs -a -V 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: binary-indep binary-arch .PHONY: build clean binary-arch binary-indep binary install