#!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 by Joey Hess. # # This version is for a hypothetical package that builds an # architecture-dependant package, as well as an architecture-independent # package. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This is the debhelper compatability version to use. export DH_COMPAT=2 # This has to be exported to make some magic below work. export DH_OPTIONS INSTALL=/usr/bin/install package=libimlib2 configure: configure-stamp configure-stamp: ./autogen.sh --prefix=/usr || ./configure --prefix=/usr touch configure-stamp build: configure build-stamp build-stamp: dh_testdir $(MAKE) touch build-stamp clean: dh_testdir rm -f build-stamp configure-stamp -$(MAKE) distclean -rm -f configure-stamp build-stamp dh_clean install: DH_OPTIONS= install: build dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) install DESTDIR=$(shell pwd)/debian/$(package)/ $(INSTALL) -d debian/$(package)-dev/usr/share/man/man1 $(INSTALL) -d debian/$(package)-dev/usr/lib $(INSTALL) debian/imlib2-config.1 debian/$(package)-dev/usr/share/man/man1 mv debian/$(package)/usr/{include,bin} debian/$(package)-dev/usr mv debian/$(package)/usr/lib/*.{so,la,a} debian/$(package)-dev/usr/lib/ $(INSTALL) -d debian/$(package)-dev/usr/share/doc/$(package)-dev/html $(INSTALL) -m 644 doc/*.{html,gif} debian/$(package)-dev/usr/share/doc/$(package)-dev/html binary-indep: # Build architecture-dependent files here. # Pass -a to all debhelper commands in this target to reduce clutter. binary-arch: DH_OPTIONS=-a binary-arch: build install # Need this version of debhelper for DH_OPTIONS to work. dh_testversion 2 dh_testdir dh_testroot dh_installdocs AUTHORS README dh_installchangelogs dh_strip dh_compress dh_fixperms dh_installdeb dh_makeshlibs dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install