1 |
#!/usr/bin/make -f |
2 |
# -*- makefile -*- |
3 |
# Sample debian/rules that uses debhelper. |
4 |
# This file was originally written by Joey Hess and Craig Small. |
5 |
# As a special exception, when this file is copied by dh-make into a |
6 |
# dh-make output file, you may use that output file without restriction. |
7 |
# This special exception was added by Craig Small in version 0.37 of dh-make. |
8 |
|
9 |
# Uncomment this to turn on verbose mode. |
10 |
#export DH_VERBOSE=1 |
11 |
|
12 |
# These are used for cross-compiling and for saving the configure script |
13 |
# from having to guess our platform (since we know it already) |
14 |
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
15 |
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
16 |
|
17 |
|
18 |
CFLAGS = -Wall -g |
19 |
|
20 |
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
21 |
CFLAGS += -O0 |
22 |
else |
23 |
CFLAGS += -O2 |
24 |
endif |
25 |
|
26 |
config.status: configure |
27 |
dh_testdir |
28 |
|
29 |
ifneq "$(wildcard /usr/share/misc/config.sub)" "" |
30 |
cp -f /usr/share/misc/config.sub config.sub |
31 |
endif |
32 |
ifneq "$(wildcard /usr/share/misc/config.guess)" "" |
33 |
cp -f /usr/share/misc/config.guess config.guess |
34 |
endif |
35 |
|
36 |
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info |
37 |
|
38 |
|
39 |
build: build-stamp |
40 |
build-stamp: config.status |
41 |
dh_testdir |
42 |
$(MAKE) |
43 |
$(MAKE) -C $(CURDIR)/doc docs |
44 |
touch $@ |
45 |
|
46 |
clean: |
47 |
dh_testdir |
48 |
dh_testroot |
49 |
|
50 |
rm -f config.sub config.guess |
51 |
[ ! -f Makefile ] || $(MAKE) distclean |
52 |
[ ! -f $(CURDIR)/doc/Makefile ] || $(MAKE) -C $(CURDIR)/doc dist-clean |
53 |
|
54 |
dh_clean build-stamp install-stamp |
55 |
|
56 |
install: install-stamp |
57 |
install-stamp: build-stamp |
58 |
dh_testdir |
59 |
dh_testroot |
60 |
dh_clean -k |
61 |
dh_installdirs |
62 |
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp |
63 |
touch $@ |
64 |
|
65 |
# Build architecture-independent files here. |
66 |
binary-indep: build install |
67 |
# We have nothing to do by default. |
68 |
|
69 |
# Build architecture-dependent files here. |
70 |
binary-arch: build install |
71 |
dh_testdir |
72 |
dh_testroot |
73 |
dh_installchangelogs ChangeLog |
74 |
dh_installdocs |
75 |
dh_installexamples |
76 |
dh_install --sourcedir=debian/tmp |
77 |
dh_link |
78 |
dh_strip --dbg-package=libmimetic0-dbg |
79 |
dh_compress -Xexamples |
80 |
dh_fixperms |
81 |
dh_makeshlibs -Xdebug |
82 |
dh_installdeb |
83 |
dh_shlibdeps |
84 |
dh_gencontrol |
85 |
dh_md5sums |
86 |
dh_builddeb |
87 |
|
88 |
binary: binary-indep binary-arch |
89 |
.PHONY: build clean binary-indep binary-arch binary install |