7 # This special exception was added by Craig Small in version 0.37 of dh-make. |
7 # This special exception was added by Craig Small in version 0.37 of dh-make. |
8 |
8 |
9 # Uncomment this to turn on verbose mode. |
9 # Uncomment this to turn on verbose mode. |
10 #export DH_VERBOSE=1 |
10 #export DH_VERBOSE=1 |
11 |
11 |
12 |
12 %: |
13 # These are used for cross-compiling and for saving the configure script |
13 dh $@ |
14 # from having to guess our platform (since we know it already) |
|
15 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
|
16 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
|
17 |
|
18 |
|
19 CFLAGS = -Wall -g |
|
20 |
|
21 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
|
22 CFLAGS += -O0 |
|
23 else |
|
24 CFLAGS += -O2 |
|
25 endif |
|
26 |
|
27 config.status: configure |
|
28 dh_testdir |
|
29 # Add here commands to configure the package. |
|
30 ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" |
|
31 |
|
32 |
|
33 build: build-stamp |
|
34 |
|
35 build-stamp: config.status |
|
36 dh_testdir |
|
37 |
|
38 # Add here commands to compile the package. |
|
39 $(MAKE) |
|
40 #docbook-to-man debian/nagios-plugin-mailq.sgml > nagios-plugin-mailq.1 |
|
41 |
|
42 touch $@ |
|
43 |
|
44 clean: Makefile |
|
45 dh_testdir |
|
46 dh_testroot |
|
47 rm -f build-stamp |
|
48 |
|
49 # Add here commands to clean up after the build process. |
|
50 -$(MAKE) distclean |
|
51 dh_clean |
|
52 |
|
53 install: build |
|
54 dh_testdir |
|
55 dh_testroot |
|
56 dh_clean -k |
|
57 dh_installdirs |
|
58 |
|
59 # Add here commands to install the package into debian/nagios-plugin-mailq. |
|
60 $(MAKE) prefix=$(CURDIR)/debian/nagios-plugin-mailq/usr install |
|
61 |
|
62 |
|
63 # Build architecture-independent files here. |
|
64 binary-indep: build install |
|
65 # We have nothing to do by default. |
|
66 |
|
67 # Build architecture-dependent files here. |
|
68 binary-arch: build install |
|
69 dh_testdir |
|
70 dh_testroot |
|
71 dh_installchangelogs |
|
72 dh_installdocs |
|
73 dh_installexamples |
|
74 # dh_install |
|
75 # dh_installmenu |
|
76 # dh_installdebconf |
|
77 # dh_installlogrotate |
|
78 # dh_installemacsen |
|
79 # dh_installpam |
|
80 # dh_installmime |
|
81 # dh_python |
|
82 # dh_installinit |
|
83 # dh_installcron |
|
84 # dh_installinfo |
|
85 dh_installman |
|
86 dh_link |
|
87 dh_strip |
|
88 dh_compress |
|
89 dh_fixperms |
|
90 # dh_perl |
|
91 # dh_makeshlibs |
|
92 dh_installdeb |
|
93 dh_shlibdeps |
|
94 dh_gencontrol |
|
95 dh_md5sums |
|
96 dh_builddeb |
|
97 |
|
98 binary: binary-indep binary-arch |
|
99 .PHONY: build clean binary-indep binary-arch binary install |
|