Rev 64 | Rev 67 | 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: configuredh_testdir# Add here commands to configure the package.dh_autotools-dev_updateconfig./configure $(buildflags) \--prefix=/usr \--libdir=/usr/lib \--enable-shared \--disable-dependency-tracking \CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS) -Wl,--as-needed"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_autotools-dev_restoreconfigdh_cleaninstall: builddh_testdirdh_testrootdh_clean -kdh_installdirs# Add here commands to install the package into debian/tmp$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp# Build architecture-independent files here.binary-indep:# Nothing to do# Build architecture-dependent files here.binary-arch: build installdh_testdirdh_testrootdh_install -a --sourcedir=debian/tmpdh_link -adh_installchangelogs -a ChangeLogdh_installdocs -adh_installexamples -adh_installinfo -adh_installman -adh_strip -a --dbg-package=nettle-dbgdh_compress -a -X.pdfdh_fixperms -adh_makeshlibs -adh_installdeb -adh_shlibdeps -adh_gencontrol -adh_md5sums -adh_builddeb -abinary: binary-arch.PHONY: build clean clean-patched binary-indep binary-arch binary install