Initial commit - version 0.0.1
[beifahrer] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8 export DH_COMPAT=5
9 export DH_OPTIONS
10
11 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
13 DEB_BUILD_ARCH   ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
14
15 CFLAGS = -Wall -g
16
17 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
18         CFLAGS += -O0
19 else
20         CFLAGS += -O2
21 endif
22 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
23         INSTALL_PROGRAM += -s
24 endif
25 ifeq (,$(findstring nolauncher,$(DEB_BUILD_OPTIONS)))
26         conf_opt := --enable-maemo-launcher
27 endif
28
29 config.status: configure
30         dh_testdir
31         # Add here commands to configure the package.
32         CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
33                  --prefix=/usr $(conf_opt)
34
35 build: build-stamp
36
37 build-stamp: config.status
38         dh_testdir
39
40         # Add here commands to compile the package.
41         $(MAKE)
42         touch $@
43
44 clean:
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) clean
51
52         dh_clean
53
54 install: build
55         dh_testdir
56         dh_testroot
57         dh_clean -k
58         dh_installdirs
59
60         # Add here commands to install the package into debian/tmp
61         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
62
63
64 # Build architecture-independent files here.
65 binary-indep: build install
66 # We have nothing to do by default.
67
68 # Build architecture-dependent files here.
69 binary-arch: install
70         dh_testdir
71         dh_testroot
72         dh_install --sourcedir=debian/tmp
73         dh_link
74         dh_strip
75         dh_compress
76         dh_fixperms
77         dh_makeshlibs
78         dh_installdeb
79         dh_shlibdeps
80         dh_gencontrol
81         dh_maemolauncher
82         dh_md5sums
83         maemo-optify
84         dh_builddeb
85
86 binary: binary-indep binary-arch
87 .PHONY: build clean binary-arch binary-indep binary install configure