Rev 93 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/usr/bin/make -f# -*- makefile -*-# Sample debian/rules that uses debhelper.# GNU copyright 1997 to 1999 by Joey Hess.# Uncomment this to turn on verbose mode.#export DH_VERBOSE=1# 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)ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))buildflags = --build=$(DEB_BUILD_GNU_TYPE)elsebuildflags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)endifparallel = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))ifneq (,$(parallel))jobsflag = -j$(parallel)endifconfig.status: configure.acdh_testdir# Add here commands to configure the package.dh_autoreconf./configure $(buildflags) \--prefix=/usr \--disable-dependency-tracking \--enable-pam --enable-kerberos --enable-srp \--with-pty --enable-tcp-forward --enable-x11-forward \--enable-agent-forward --enable-ipv6 --enable-utmp \--with-zlib --with-tcpwrappers --with-sshd1=/usr/sbin/sshd \--with-x XAUTH_PROGRAM=/usr/bin/xauth \$(shell DEB_LDFLAGS_MAINT_PREPEND="-Wl,-z,defs -Wl,--as-needed" dpkg-buildflags --export=configure)build: build-stampbuild-stamp: config.statusdh_testdir# Add here commands to compile the package.$(MAKE) $(jobsflag) MAKEINFO='makeinfo --enable-encoding'ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))$(MAKE) checkendiftouch build-stampclean:dh_testdirdh_testrootrm -f build-stamp# Add here commands to clean up after the build process.[ ! -f Makefile ] || $(MAKE) distcleandh_autoreconf_cleandh_cleaninstall: builddh_testdirdh_testrootdh_prepdh_installdirs# Add here commands to install the package into debian/tmp$(MAKE) install DESTDIR=$(CURDIR)/debian/tmpbuild-indep build-arch: build# Build architecture-independent files here.binary-indep: build-indep installdh_testdirdh_testrootdh_install -i --sourcedir=debian/tmpdh_link -idh_installchangelogs -i ChangeLogdh_installdocs -i -A READMEdh_installinfo -idh_installman -idh_installdebconf -idh_compress -idh_fixperms -idh_makeshlibs -idh_installdeb -idh_shlibdeps -idh_gencontrol -idh_md5sums -idh_builddeb -i# Build architecture-dependent files here.binary-arch: build-arch installdh_testdirdh_testrootdh_install -a --sourcedir=debian/tmpdh_link -adh_installchangelogs -a ChangeLogdh_installdocs -a -A READMEdh_installexamples -adh_installman -adh_installinit -adh_installdebconf -adh_strip -adh_compress -adh_fixperms -adh_makeshlibs -adh_installdeb -adh_shlibdeps -adh_gencontrol -adh_md5sums -adh_builddeb -abinary: binary-arch binary-indep.PHONY: build-indep build-arch build clean clean-patched binary-indep binary-arch binary install