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
tmp := $(CURDIR)/debian/upgrade-notifier
11
# These are used for cross-compiling and for saving the configure script
12
# from having to guess our platform (since we know it already)
13
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
14
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
19
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
24
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
28
config.status: configure
30
# Add here commands to configure the package.
31
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-pkg-manager="/usr/bin/update-manager"
36
build-stamp: config.status
39
# Add here commands to compile the package.
41
#/usr/bin/docbook-to-man debian/upgrade-notifier.sgml > upgrade-notifier.1
50
# Add here commands to clean up after the build process.
52
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
53
cp -f /usr/share/misc/config.sub config.sub
55
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
56
cp -f /usr/share/misc/config.guess config.guess
68
# Add here commands to install the package into debian/upgrade-notifier.
69
$(MAKE) install DESTDIR=$(CURDIR)/debian/upgrade-notifier
71
install -p -m 755 debian/synaptic-wrapper $(tmp)/usr/bin
76
# Build architecture-independent files here.
77
binary-indep: build install
78
# We have nothing to do by default.
80
# Build architecture-dependent files here.
81
binary-arch: build install
84
dh_installchangelogs ChangeLog
111
binary: binary-indep binary-arch
112
.PHONY: build clean binary-indep binary-arch binary install
2
export CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2)
3
export LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed