fremantle build fixes
[drnoksnes] / debian / rules
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 # Determine Maemo version
18 MAEMO_VERSION := $(shell cut -d"." -f1 /etc/maemo_version)
19
20 # Determine app version from debian changelog
21 GAME_VERSION := $(shell head -n 1 debian/changelog | sed 's/[^0-9.-]//g')
22
23 CFLAGS = -Wall -g -DMAEMO -DMAEMO_VERSION=$(MAEMO_VERSION)
24 LDFLAGS = -Wl,-z,defs
25 CONFOPTS = 
26
27 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
28         CFLAGS += -O0
29 else ifneq (,$(findstring arm,$(DEB_BUILD_GNU_TYPE)))
30         CFLAGS += -O2
31         ifneq (,$(findstring vfp,$(DEB_BUILD_OPTIONS)))
32                 CFLAGS += -march=armv6j -mtune=arm1136jf-s -mfpu=vfp -mfloat-abi=softfp
33         endif
34         # Fixes hang while exiting on Diablo.
35         CFLAGS += -static-libgcc
36 else # x86
37         crash
38 endif
39
40 configure: configure-stamp
41 configure-stamp:
42         dh_testdir
43         # Add here commands to configure the package.
44
45         touch configure-stamp
46
47
48 build: build-stamp
49
50 build-stamp: configure-stamp 
51         dh_testdir
52
53         $(MAKE) CFLAGS="$(CFLAGS)" CXXFLAGS="$(CFLAGS)" GAME_VERSION="$(GAME_VERSION)"
54
55         touch $@
56
57 clean:
58         dh_testdir
59         dh_testroot
60         rm -f build-stamp configure-stamp
61
62         # Add here commands to clean up after the build process.
63         -$(MAKE) clean
64
65         dh_clean 
66
67 install: build
68         dh_testdir
69         dh_testroot
70         dh_clean -k 
71         dh_installdirs
72
73         # Add here commands to install the package into debian/drnoksnes.
74         $(MAKE) DESTDIR=$(CURDIR)/debian/drnoksnes install
75
76
77 # Build architecture-independent files here.
78 binary-indep: build install
79 # We have nothing to do by default.
80
81 # Build architecture-dependent files here.
82 binary-arch: build install
83         dh_testdir
84         dh_testroot
85 #       dh_installchangelogs 
86 #       dh_installdocs
87 #       dh_installexamples
88 #       dh_installman
89         dh_link
90         dh_strip --dbg-package=drnoksnes-dbg
91         dh_compress
92         dh_fixperms
93         dh_installdeb
94         dh_shlibdeps
95         dh_gencontrol
96         dh_md5sums
97         dh_builddeb
98
99 binary: binary-indep binary-arch
100 .PHONY: build clean binary-indep binary-arch binary install configure