#!/usr/bin/make -f # Based on sample debian/rules from debhelper, # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) COMPILER_FLAGS += CFLAGS="-O0 -g -Wall" else COMPILER_FLAGS += CFLAGS="-O2 -g -Wall" endif #configure: configure-stamp #configure-stamp: # dh_testdir # # Add here commands to configure the package. # # # touch configure-stamp #build: configure-stamp build-stamp build: build-stamp build-stamp: dh_testdir # compile the package $(MAKE) $(COMPILER_FLAGS) /usr/bin/docbook-to-man debian/sapphire.sgml > debian/sapphire.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # clean up after the build process [ ! -f Makefile ] || $(MAKE) clean rm -f debian/sapphire.1 dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # install the package into debian/sapphire $(MAKE) install DESTDIR=$(CURDIR)/debian/sapphire mv debian/sapphire/usr/share/sapphire/menu debian/sapphire/etc/X11/sapphire/menu mv debian/sapphire/etc/X11/sapphire/menu/default debian/sapphire/etc/X11/sapphire/menu/default-menu mkdir -p debian/sapphire/usr/share/xsessions install -m 644 debian/sapphire.desktop debian/sapphire/usr/share/xsessions/sapphire.desktop # build architecture-independent files binary-indep: build install # We have nothing to do by default. # build architecture-dependent files binary-arch: build install dh_testdir dh_testroot dh_installdocs # dh_installexamples dh_installmenu dh_installman debian/sapphire.1 dh_installchangelogs ChangeLog dh_link ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) dh_strip endif dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure