a74a522feced4aae304ea33d42f4665b094ee233
[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 ARCH                            ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
17
18 # Determine Maemo version
19 MAEMO_VERSION := $(shell cut -d"." -f1 /etc/maemo_version)
20
21 # Determine app version from debian changelog
22 GAME_VERSION := $(shell head -n 1 debian/changelog | sed 's/[^0-9.-]//g')
23
24 # Default CFLAGS
25 CFLAGS = -Wall -g -DMAEMO -DMAEMO_VERSION=$(MAEMO_VERSION)
26 GUI_CFLAGS := -std=c99 -fPIC -shared $(CFLAGS)
27 LDFLAGS = -Wl,-z,defs
28 GUI_LDFLAGS := -export-dynamic -avoid-version -module -shared $(LDFLAGS)
29 ASFLAGS = -g
30
31 M4=m4
32 M4DEFS=-DMAEMO_MAJOR=$(MAEMO_VERSION)
33
34 # Architecture specific CFLAGS
35 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
36         CFLAGS += -O0
37 else ifneq (,$(findstring armel,$(ARCH)))
38         CFLAGS += -O2
39         GUI_CFLAGS += -Os
40         ifneq (,$(findstring vfp,$(DEB_BUILD_OPTIONS)))
41                 CFLAGS += -march=armv6j -mtune=arm1136jf-s -mfpu=vfp -mfloat-abi=softfp
42                 ASFLAGS += -march=armv6j -mfpu=vfp -mfloat-abi=softfp
43         endif
44         # Fixes hang while exiting in Diablo.
45         CFLAGS += -static-libgcc
46 else ifneq (,$(findstring i386,$(ARCH)))
47         CFLAGS += -O2
48         GUI_CFLAGS += -O2
49 else
50         # Don't support anything else yet
51         crash
52 endif
53
54 debian/control: debian/control.m4
55         $(M4) $(M4DEFS) debian/control.m4 > debian/control
56
57 configure: configure-stamp
58 configure-stamp:
59         dh_testdir
60         $(M4) $(M4DEFS) debian/control.m4 > debian/control
61         $(M4) $(M4DEFS) debian/drnoksnes.postinst.m4 > debian/drnoksnes.postinst
62         
63         echo ARCH="$(ARCH)" > config.mk
64         echo CONF_GUI=1 >> config.mk
65         echo CONF_HGW=1 >> config.mk
66 ifeq ($(shell expr "$(MAEMO_VERSION)" ">" 4), 1)
67         # Maemo 5 devices do not support Xsp
68         # But they support hildon compositing stuff
69         echo CONF_HD=1 >> config.mk
70 else
71         echo CONF_XSP=1 >> config.mk
72 endif
73         echo ASFLAGS="$(ASFLAGS)" >> config.mk
74         echo CFLAGS="$(CFLAGS)" >> config.mk
75         echo CXXFLAGS="$(CFLAGS)" >> config.mk
76         echo LDFLAGS="$(LDFLAGS)" >> config.mk
77         
78         echo CONF_NLS=1 > gui/config.mk
79         echo CFLAGS="$(GUI_CFLAGS)" >> gui/config.mk
80         echo LDFLAGS="$(GUI_LDFLAGS)" >> gui/config.mk
81         echo MAEMO_VERSION="$(MAEMO_VERSION)" >> gui/config.mk
82         echo GAME_VERSION="$(GAME_VERSION)" >> gui/config.mk
83         
84         touch configure-stamp
85
86 build: build-stamp
87 build-stamp: configure-stamp 
88         dh_testdir
89         $(MAKE)
90         touch $@
91
92 clean:
93         dh_testdir
94         dh_testroot
95         rm -f build-stamp configure-stamp
96         -$(MAKE) clean
97         rm -f config.mk gui/config.mk
98         dh_clean
99
100 install: build
101         dh_testdir
102         dh_testroot
103         dh_clean -k 
104         dh_installdirs
105         $(MAKE) DESTDIR=$(CURDIR)/debian/drnoksnes GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
106
107 # Build architecture-independent files here.
108 binary-indep: build install
109 # We have nothing to do by default.
110
111 # Build architecture-dependent files here.
112 binary-arch: build install
113         dh_testdir
114         dh_testroot
115 #       dh_installchangelogs 
116 #       dh_installdocs
117 #       dh_installexamples
118 #       dh_installman
119         dh_gconf
120 #       Fixes a nasty bug with dh_gconf & busybox
121         rm -f $(CURDIR)/debian/drnoksnes.postrm.debhelper
122         dh_link
123         dh_strip --dbg-package=drnoksnes-dbg
124         dh_compress
125         dh_fixperms
126         dh_installdeb
127         dh_shlibdeps
128         dh_gencontrol
129         dh_md5sums
130         dh_builddeb
131
132 binary: binary-indep binary-arch
133 .PHONY: build clean binary-indep binary-arch binary install configure