3 # Sample debian/rules that uses debhelper.
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
10 # Modified to make a template file for a multi-binary package with separated
11 # build-arch and build-indep targets by Bill Allombert 2001
13 # Uncomment this to turn on verbose mode.
16 # This has to be exported to make some magic below work.
19 # These are used for cross-compiling and for saving the configure script
20 # from having to guess our platform (since we know it already)
21 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
22 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
27 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
36 config.status: configure
38 CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
44 build-arch: build-arch-stamp
46 build-arch-stamp: config.status
48 touch build-arch-stamp
53 rm -f build-arch-stamp
55 # Add here commands to clean up after the build process.
57 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
58 cp -f /usr/share/misc/config.sub config.sub
60 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
61 cp -f /usr/share/misc/config.guess config.guess
63 rm -rf $(CURDIR)/debian/tmp || true
75 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
76 mv -v $(CURDIR)/debian/tmp/usr/lib/*.so $(CURDIR)/debian/liboping/usr/lib/
77 mv -v $(CURDIR)/debian/tmp/usr/lib/*.{a,la} $(CURDIR)/debian/liboping-dev/usr/lib/
78 mv -v $(CURDIR)/debian/tmp/usr/include/*.h $(CURDIR)/debian/liboping-dev/usr/include/
79 mv -v $(CURDIR)/debian/tmp/usr/bin/* $(CURDIR)/debian/oping/usr/bin/
83 # Must not depend on anything. This is to be called by
84 # binary-arch/binary-indep
85 # in another 'make' thread.
89 dh_installchangelogs ChangeLog
115 # Build architecture dependant packages using the common target.
116 binary-arch: build-arch install-arch
117 $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
120 .PHONY: build clean binary-arch binary install install-arch