deleting unneeded files and adding sa1cpu
[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 GUI_CFLAGS := $(CFLAGS)
25 LDFLAGS = -Wl,-z,defs
26
27 M4=m4
28 M4DEFS=-DMAEMO_MAJOR=$(MAEMO_VERSION)
29
30 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
31         CFLAGS += -O0
32 else ifneq (,$(findstring arm,$(DEB_BUILD_GNU_TYPE)))
33         CFLAGS += -O2
34         GUI_CFLAGS += -Os
35         ifneq (,$(findstring vfp,$(DEB_BUILD_OPTIONS)))
36                 CFLAGS += -march=armv6j -mtune=arm1136jf-s -mfpu=vfp -mfloat-abi=softfp
37         endif
38         # Fixes hang while exiting on Diablo.
39         CFLAGS += -static-libgcc
40 else # x86
41         crash ## Cannot build in x86
42 endif
43
44 debian/control: debian/control.m4
45         $(M4) $(M4DEFS) debian/control.m4 > debian/control
46
47 configure: configure-stamp
48 configure-stamp:
49         dh_testdir
50         $(M4) $(M4DEFS) debian/control.m4 > debian/control
51         $(M4) $(M4DEFS) debian/drnoksnes.postinst.m4 > debian/drnoksnes.postinst
52         touch configure-stamp
53
54 build: build-stamp
55 build-stamp: configure-stamp 
56         dh_testdir
57         $(MAKE) CFLAGS="$(CFLAGS)" CXXFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" GUI_CFLAGS="$(GUI_CFLAGS)" GAME_VERSION="$(GAME_VERSION)"
58         touch $@
59
60 clean:
61         dh_testdir
62         dh_testroot
63         rm -f build-stamp configure-stamp
64         -$(MAKE) clean
65         dh_clean 
66
67 install: build
68         dh_testdir
69         dh_testroot
70         dh_clean -k 
71         dh_installdirs
72         $(MAKE) DESTDIR=$(CURDIR)/debian/drnoksnes install
73
74 # Build architecture-independent files here.
75 binary-indep: build install
76 # We have nothing to do by default.
77
78 # Build architecture-dependent files here.
79 binary-arch: build install
80         dh_testdir
81         dh_testroot
82 #       dh_installchangelogs 
83 #       dh_installdocs
84 #       dh_installexamples
85 #       dh_installman
86         dh_link
87         dh_strip --dbg-package=drnoksnes-dbg
88         dh_compress
89         dh_fixperms
90         dh_installdeb
91         dh_shlibdeps
92         dh_gencontrol
93         dh_md5sums
94         dh_builddeb
95
96 binary: binary-indep binary-arch
97 .PHONY: build clean binary-indep binary-arch binary install configure