e58d7f662925ada54564c15027d1ef16ccf2bc3f
[framework/location/gps-manager.git] / 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
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
16 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
17 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
18 DEB_HOST_ARCH       ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
19
20 ifneq (,$(findstring armel,$(DEB_HOST_ARCH)))
21         GPS_ENABLER ?= --enable-gps
22         ARCH ?= armel
23 else
24         GPS_ENABLER ?= --enable-gps
25         ARCH ?= x86
26 endif
27
28 #CFLAGS ?= -Wall -g
29 #LDFLAGS ?=
30 PREFIX ?= /usr
31 DATADIR ?= /usr/share
32 DESTDIR ?= $(CURDIR)/debian/tmp
33
34 #CFLAGS += -O0
35 CFLAGS += -O0 -fvisibility=hidden -Wall -fPIC -g
36 CXXFLAGS += -O0 -fvisibility=hidden -Wall -fPIC -g
37 #LDFLAGS += -Wl,--as-needed -Wl,--hash-style=both
38
39 #ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
40 #       CFLAGS += -O0
41 #else
42 #       CFLAGS += -O2
43 #endif
44 #ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
45 #       CFLAGS += -g
46 #endif
47
48 configure: configure-stamp
49 configure-stamp: 
50         dh_testdir
51         # Add here commands to configure the package.
52         ./autogen.sh
53         mkdir -p build
54         cd build && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" ../configure --prefix=$(PREFIX) --datadir=$(DATADIR) $(GPS_ENABLER)
55
56         touch $@
57
58 build: build-stamp
59 build-stamp:  configure-stamp
60         dh_testdir
61
62         # Add here commands to compile the package.
63         mkdir -p build
64         cd build && $(MAKE)
65         #docbook-to-man debian/ncurses.sgml > ncurses.1
66
67         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
68                 cat $$f > $${f%.in}; \
69                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
70                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
71                 sed -i -e "s#@ARCH@#$(ARCH)#g" $${f%.in}; \
72         done
73
74         touch $@
75
76 clean:
77         dh_testdir
78         dh_testroot
79         rm -f build-stamp configure-stamp
80
81         # Add here commands to clean up after the build process.
82         mkdir -p build
83         cd build
84         -$(MAKE) clean
85         -$(MAKE) distclean
86         cd ..
87 #ifneq "$(wildcard /usr/share/misc/config.sub)" ""
88 #       cp -f /usr/share/misc/config.sub config.sub
89 #endif
90 #ifneq "$(wildcard /usr/share/misc/config.guess)" ""
91 #       cp -f /usr/share/misc/config.guess config.guess
92 #endif
93
94         for f in `find $(CURDIR)/debian -name "*.in"`; do \
95                 rm -f $${f%.in}; \
96         done
97
98         find $(CURDIR) -name "Makefile.in" -exec rm -f {} \;
99
100         rm -rf build build-aux m4 configure config.h.in configure aclocal.m4
101         dh_clean 
102
103 install: build
104         dh_testdir
105         dh_testroot
106 #       dh_clean -k
107         dh_installdirs
108
109         # Add here commands to install the package into debian/ncurses.
110         mkdir -p build
111         cd build && $(MAKE) DESTDIR=$(DESTDIR) install
112
113 # Build architecture-independent files here.
114 binary-indep: build install
115 # We have nothing to do by default.
116
117 # Build architecture-dependent files here.
118 binary-arch: build install
119         dh_testdir
120         dh_testroot
121         dh_installchangelogs 
122         dh_installdocs
123         dh_installexamples
124         dh_install #--sourcedir=debian/tmp
125 #       dh_installmenu
126 #       dh_installdebconf       
127 #       dh_installlogrotate
128 #       dh_installemacsen
129 #       dh_installpam
130 #       dh_installmime
131 #       dh_python
132 #       dh_installinit
133 #       dh_installcron
134 #       dh_installinfo
135         dh_installman
136         dh_link
137 #       dh_strip
138         dh_strip --dbg-package=gps-manager-dbg
139         dh_compress
140         dh_fixperms
141 #       dh_perl
142         dh_makeshlibs
143         dh_installdeb
144         dh_shlibdeps
145         dh_gencontrol
146         dh_md5sums
147         dh_builddeb
148
149 binary: binary-indep binary-arch
150 .PHONY: build clean binary-indep binary-arch binary install