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 |
|
13 |
# These are used for cross-compiling and for saving the configure script |
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 |
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 |
30 |
|
31 |
|
32 |
build: build-stamp |
33 |
|
34 |
build-stamp: config.status |
35 |
dh_testdir |
36 |
$(MAKE) |
37 |
touch $@ |
38 |
|
39 |
clean: |
40 |
dh_testdir |
41 |
dh_testroot |
42 |
rm -f build-stamp install-stamp |
43 |
|
44 |
[ ! -f Makefile ] || $(MAKE) distclean |
45 |
ifneq "$(wildcard /usr/share/misc/config.sub)" "" |
46 |
cp -f /usr/share/misc/config.sub config.sub |
47 |
endif |
48 |
ifneq "$(wildcard /usr/share/misc/config.guess)" "" |
49 |
cp -f /usr/share/misc/config.guess config.guess |
50 |
endif |
51 |
|
52 |
dh_clean |
53 |
|
54 |
install: install-stamp |
55 |
install-stamp: build-stamp |
56 |
dh_testdir |
57 |
dh_testroot |
58 |
dh_clean -k |
59 |
$(MAKE) install DESTDIR=$(CURDIR)/debian/cdck |
60 |
rm -rf $(CURDIR)/debian/cdck/usr/lib |
61 |
touch $@ |
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 ChangeLog |
72 |
dh_installdocs |
73 |
dh_installman |
74 |
dh_strip |
75 |
dh_compress |
76 |
dh_fixperms |
77 |
dh_installdeb |
78 |
dh_shlibdeps |
79 |
dh_gencontrol |
80 |
dh_md5sums |
81 |
dh_builddeb |
82 |
|
83 |
binary: binary-indep binary-arch |
84 |
.PHONY: build clean binary-indep binary-arch binary install |