3
# Sample debian/rules that uses debhelper.
4
# GNU copyright 1997 to 1999 by Joey Hess.
6
# Uncomment this to turn on verbose mode.
10
# These are used for cross-compiling and for saving the configure script
11
# from having to guess our platform (since we know it already)
12
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
13
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
18
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
23
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
27
config.status: configure
29
# Add here commands to configure the package.
30
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc
35
build-stamp: config.status
38
# Add here commands to compile the package.
40
#/usr/bin/docbook-to-man debian/update-manager.sgml > update-manager.1
42
# intltool for rosetta
43
(cd po; /usr/bin/intltool-update -p --verbose || true)
52
# Add here commands to clean up after the build process.
54
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
55
cp -f /usr/share/misc/config.sub config.sub
57
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
58
cp -f /usr/share/misc/config.guess config.guess
70
# Add here commands to install the package into debian/update-manager.
71
$(MAKE) install DESTDIR=$(CURDIR)/debian/update-manager
74
# Build architecture-independent files here.
75
binary-indep: build install
76
# We have nothing to do by default.
78
# Build architecture-dependent files here.
79
binary-arch: build install
82
dh_installchangelogs ChangeLog
110
binary: binary-indep binary-arch
111
.PHONY: build clean binary-indep binary-arch binary install