/[zanavi_public1]/navit/navit/Makefile.am
ZANavi

Contents of /navit/navit/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 41 - (show annotations) (download)
Tue Aug 11 18:50:37 2015 UTC (8 years, 7 months ago) by zoff99
File size: 24086 byte(s)
many fixes, and new features
1 include $(top_srcdir)/Makefile.inc
2 comma=,
3 SUBDIRS=fib-1.1 support
4 if PLUGINS
5 SUBDIRS += .
6 endif
7 DIST_SUBDIRS=autoload binding map maptool fib-1.1 font fonts gui graphics osd plugin speech vehicle support xpm maps
8 SUBDIRS+=autoload binding map font gui graphics osd plugin speech vehicle xpm
9
10 MODULES = $(wildcard $(top_builddir)/navit/binding/*/*.la $(top_builddir)/navit/font/*/*.la $(top_builddir)/navit/graphics/*/*.la $(top_builddir)/navit/gui/*/*.la $(top_builddir)/navit/map/*/*.la $(top_builddir)/navit/osd/*/*.la $(top_builddir)/navit/speech/*/*.la $(top_builddir)/navit/vehicle/*/*.la)
11
12 if FONTS
13 SUBDIRS += fonts
14 endif
15 if !PLUGINS
16 SUBDIRS += .
17 endif
18
19 if MAPTOOL
20 SUBDIRS += maptool
21 endif
22
23 if BUILD_SAMPLEMAP
24 SUBDIRS += maps
25 endif
26
27
28 AM_CPPFLAGS = -I$(top_srcdir)/navit/fib-1.1 @NAVIT_CFLAGS@ @ZLIB_CFLAGS@ -DPREFIX=\"@prefix@\" -DLIBDIR=\"@libdir@\" -DMODULE=navit
29 BUILT_SOURCES = version.h navit_config.h
30
31 if BIN_NAVIT
32 bin_PROGRAMS = navit
33 endif
34
35 if SHARED_LIBNAVIT
36 lib_LTLIBRARIES = lib@LIBNAVIT@.la
37 lib@LIBNAVIT@_la_LDFLAGS = -avoid-version @MODULE_LDFLAGS@ @NAVIT_SOCKET_LDFLAGS@ -no-undefined -Wl,--no-undefined
38 else
39 noinst_LTLIBRARIES = lib@LIBNAVIT@.la
40 endif
41 lib@LIBNAVIT@_la_LIBADD = @NAVIT_LIBS@ @WORDEXP_LIBS@ @ZLIB_LIBS@ @INTLLIBS@ -Lfib-1.1 -lfib @MODULE_LIBADD@ @CRYPTO_LIBS@
42
43 if SUPPORT_WIN32CE
44 lib@LIBNAVIT@_la_LIBADD += -Lsupport/libc -lsupport_libc
45 endif
46
47 pkgdata_DATA = navit.xml
48
49 EXTRA_DIST = navit_shipped.xml navit.dtd
50
51 lib@LIBNAVIT@_la_SOURCES = announcement.c atom.c attr.c cache.c callback.c command.c compass.c config_.c coord.c country.c data_window.c debug.c \
52 event.c event_glib.h file.c graphics.c gui.c item.c layout.c log.c main.c map.c \
53 linguistics.c mapset.c maptype.c menu.c messages.c bookmarks.c bookmarks.h navit.c navigation.c osd.c param.c phrase.c plugin.c popup.c \
54 profile.c projection.c roadprofile.c route.c routech.c search.c speech.c start_real.c transform.c track.c \
55 util.c vehicle.c vehicleprofile.c xmlconfig.c announcement.h atom.h attr.h attr_def.h cache.h callback.h color.h command.h compass.h config_.h coord.h country.h \
56 android.h data.h data_window.h data_window_int.h debug.h destination.h draw_info.h endianess.h event.h \
57 file.h graphics.h gtkext.h gui.h item.h item_def.h keys.h log.h layer.h layout.h linguistics.h main.h map-share.h map.h\
58 map_data.h mapset.h maptype.h menu.h messages.h navigation.h navit.h osd.h \
59 param.h phrase.h plugin.h point.h plugin_def.h projection.h popup.h route.h profile.h roadprofile.h search.h speech.h start_real.h \
60 transform.h track.h types.h util.h vehicle.h vehicleprofile.h window.h xmlconfig.h zipfile.h \
61 navit_nls.h sunriset.c sunriset.h glib_slice.h maptool/miniz.c \
62 snprintf.c snprintf.h
63
64
65 if SUPPORT_ANDROID
66 lib@LIBNAVIT@_la_SOURCES += vehicle/android/vehicle_android.c \
67 vehicle/demo/vehicle_demo.c \
68 gui/internal/gui_internal.c \
69 graphics/android/graphics_android.c \
70 map/binfile/binfile.c \
71 map/csv/csv.c \
72 map/csv/quadtree.c \
73 map/textfile/textfile.c \
74 osd/core/osd_core.c \
75 speech/android/speech_android.c
76 endif
77
78
79 XSLTS=@XSLTS@
80 navit.xml: navit_shipped.xml $(foreach xslt, $(subst $(comma), ,$(XSLTS)), $(addsuffix .xslt,$(addprefix xslt/,$(xslt)))) navit_android_xml
81 cp $< navit.xml.new
82 if [ ! -f navit.dtd ]; then cp -f $(top_srcdir)/navit/navit.dtd .; fi
83 for i in $^; do if [ "$${i%.xslt}" != "$$i" ]; then echo "Applying $$i" ; @SAXON@ -snone navit.xml.new $$i >navit.xml.tmp || exit ; mv navit.xml.tmp navit.xml.new || exit ; fi ; done
84 mv navit.xml.new navit.xml
85 rm -f navit.xml.tmp
86
87 navit_android_xml: navit_shipped.xml
88 if SUPPORT_ANDROID
89 # new android xml files for (mdpi,ldpi,hdpi)
90 cp $(srcdir)/navit_shipped.xml navit_android.xml.new
91 if [ ! -f navit.dtd ]; then cp -f $(top_srcdir)/navit/navit.dtd .; fi
92
93 # # now apply any other xslt files (this would allow for pedestrian plugin)
94 # for i in $(foreach xslt, $(subst $(comma), ,$(XSLTS)), $(addsuffix .xslt,$(addprefix xslt/,$(xslt)))); do if [ "$${i%.xslt}" != "$$i" ]; then j=`basename $$i` ; if [ "$$j" != "android.xslt" ] ; then echo "Android: Applying $$i" ; @SAXON@ -snone navit_android.xml.new $(srcdir)/"$$i" >navit_android.xml.new.tmp || exit ; mv navit_android.xml.new.tmp navit_android.xml.new || exit ; fi ; fi ; done
95 # # for now disable pedestrian plugin (zoff99)
96
97 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_mdpi.xslt >navit_android_mdpi.xml.tmp
98 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_ldpi.xslt >navit_android_ldpi.xml.tmp
99 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_hdpi.xslt >navit_android_hdpi.xml.tmp
100 rm -f navit_android.xml.new
101 rm -f navit_android.xml.new.tmp
102 mv navit_android_mdpi.xml.tmp navit_android_mdpi.xml
103 mv navit_android_ldpi.xml.tmp navit_android_ldpi.xml
104 mv navit_android_hdpi.xml.tmp navit_android_hdpi.xml
105 rm -f navit_android_mdpi.xml.tmp
106 rm -f navit_android_ldpi.xml.tmp
107 rm -f navit_android_hdpi.xml.tmp
108 else
109 echo "no Android support"
110 endif
111
112 if SUPPORT_ANDROID
113 lib@LIBNAVIT@_la_SOURCES += android.c
114 navit_SOURCES =
115 navit_LDADD =
116
117 v_int = $$(cat $(srcdir)/android/Android_Market_Version_int.txt|grep v_int|cut -d ":" -f 2)
118 v_name = "1.0.0-"$$(LANG=C svnversion $(top_srcdir) 2> /dev/null|tr -d ":A-Z" 2> /dev/null)
119 b_arch = $(shell if [ "$(DO_X86_BUILD)" == "1" ]; then echo "x86"; elif [ "$(DO_ARMV7_BUILD)" == "1" ]; then echo "armeabi-v7a"; else echo "armeabi"; fi)
120
121
122 android/AndroidManifest.xml: android/AndroidManifest.xml.in
123 mkdir -p $(builddir)/android
124 mkdir -p $(builddir)/android/res2/drawable-hdpi
125 mkdir -p $(builddir)/android/res2/drawable-mdpi
126 mkdir -p $(builddir)/android/res2/drawable-ldpi
127
128 sed '0,/<uses-sdk/!d' <$< >$@
129 for i in $(subst $(comma), ,@ANDROID_PERMISSIONS@); do echo " <uses-permission android:name=\"android.permission.$$i\" />" >>$@; done
130 sed '0,/<uses-sdk/d' <$< >>$@
131 sed -e "s/@ANDROID_VERSION_INT@/$(v_int)/" <$@ >android/AndroidManifest.xml.tmp
132 mv android/AndroidManifest.xml.tmp $@
133 sed -e "s/@ANDROID_VERSION_NAME@/$(v_name)/" <$@ >android/AndroidManifest.xml.tmp
134 mv android/AndroidManifest.xml.tmp $@
135
136 android/build.xml: android/AndroidManifest.xml android/dummy.txt
137 # this is needed, otherwise somehow the files cant be deleted
138 mkdir -p $(builddir)/android/src/
139 if [ "$(builddir)" != "$(srcdir)" ]; then chmod -R u+w $(builddir)/android/src/; fi
140 if [ "$(builddir)" != "$(srcdir)" ]; then rm -Rf $(builddir)/android/src/; fi
141 if [ "$(builddir)" != "$(srcdir)" ]; then cp -rpf $(srcdir)/android/* $(builddir)/android; fi
142
143 if [ "$(builddir)" != "$(srcdir)" ]; then rm -Rf $(builddir)/android/lib/; fi
144 mkdir -p $(builddir)/android/lib/
145 if [ "$(builddir)" != "$(srcdir)" ]; then cp -pf $(srcdir)/android/tagsoup-1.2.1.jar $(builddir)/android/lib/; fi
146
147 touch $(srcdir)/android/dummy.txt
148 touch $(builddir)/android/dummy.txt
149
150 # mkdir -p $(builddir)/actionbarsherlock/src/
151 # if [ "$(builddir)" != "$(srcdir)" ]; then chmod -R u+w $(builddir)/actionbarsherlock/src/; fi
152 # if [ "$(builddir)" != "$(srcdir)" ]; then rm -Rf $(builddir)/actionbarsherlock/src/; fi
153 # if [ "$(builddir)" != "$(srcdir)" ]; then cp -rpf $(srcdir)/actionbarsherlock/* $(builddir)/actionbarsherlock; fi
154 # touch $(srcdir)/actionbarsherlock/dummy.txt
155 # touch $(builddir)/actionbarsherlock/dummy.txt
156 #
157 # android update project -t @ANDROID_PROJECT@ -p android -l ../actionbarsherlock
158 # echo "jar.libs.dir=lib" >> $(builddir)/android/ant.properties
159
160 mkdir -p $(builddir)/android-support-v7-appcompat/src/
161 if [ "$(builddir)" != "$(srcdir)" ]; then chmod -R u+w $(builddir)/android-support-v7-appcompat/src/; fi
162 if [ "$(builddir)" != "$(srcdir)" ]; then rm -Rf $(builddir)/android-support-v7-appcompat/src/; fi
163 if [ "$(builddir)" != "$(srcdir)" ]; then cp -rpf $(srcdir)/android-support-v7-appcompat/* $(builddir)/android-support-v7-appcompat/; fi
164 touch $(srcdir)/android-support-v7-appcompat/dummy.txt
165 touch $(builddir)/android-support-v7-appcompat/dummy.txt
166
167 if [ "$(builddir)" != "$(srcdir)" ]; then mkdir -p $(builddir)/android/src/com/zoffcc/applications/zanavi_msg/ ; fi
168 if [ "$(builddir)" != "$(srcdir)" ]; then cp -pf $(builddir)/android/aidl/com/zoffcc/applications/zanavi_msg/*.aidl $(builddir)/android/src/com/zoffcc/applications/zanavi_msg/ ; fi
169
170 # android update lib-project -t @ANDROID_PROJECT@ -p $(builddir)/android-support-v7-appcompat
171 android update project -t @ANDROID_PROJECT@ -p android -l ../android-support-v7-appcompat
172 echo "jar.libs.dir=lib" >> $(builddir)/android/ant.properties
173
174
175 apkg-all: all android/build.xml navit.xml
176 mkdir -p android/libs/$(b_arch)
177 cp .libs/*.so android/libs/$(b_arch)/libnavit.so
178 for i in */*/.libs/*.so ; do sed 's&lib_data_data_com\.zoffcc\.applications\.zanavi_lib_&/data/data/com.zoffcc.applications.zanavi/lib/lib&' <$$i >android/libs/$(b_arch)/$$(basename $$i); done
179
180 mkdir -p android/res/drawable-ldpi
181 mkdir -p android/res/drawable-mdpi
182 mkdir -p android/res/drawable-hdpi
183 mkdir -p android/res/drawable-xhdpi
184 mkdir -p android/res/drawable-xxhdpi
185
186 mkdir -p android/res2/drawable-hdpi
187 mkdir -p android/res2/drawable-mdpi
188 mkdir -p android/res2/drawable-ldpi
189
190 # all icons and imgs
191 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo *_16_16.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-ldpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_16_16xx') ; done ; fi
192 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo *_32_32.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-mdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_32_32xx') ; done ; fi
193 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo *_48_48.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-hdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_48_48xx') ; done ; fi
194 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo *_48_48.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-xhdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_48_48xx') ; done ; fi
195
196 # nav icons (overwrite with larger versions)
197 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo nav_*_48_48.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-ldpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_48_48xx') ; done ; fi
198 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo nav_*_48_48.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-mdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_48_48xx') ; done ; fi
199 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo nav_*_96_96.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-hdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_96_96xx') ; done ; fi
200 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(builddir)/xpm && echo nav_*_192_192.png); do cp -v $(builddir)/xpm/$$i android/res/drawable-xhdpi/$$( echo $$i | tr "[A-Z]" "[a-z]" | sed -e 'sx_192_192xx') ; done ; fi
201
202
203 # only use needed pngs to make size of apk smaller
204 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in flag_bk_tr.png flag_bk_wh.png mini_roundabout.png gui_active_32_32.png gui_arrow_right_32_32.png gui_arrow_left_32_32.png icon_32_32.png unknown_32_32.png gui_zoom_out_64_64.png gui_zoom_in_64_64.png gui_map_32_32.png gui_home_32_32.png gui_actions_64_64.png gui_settings_64_64.png gui_tools_64_64.png gui_about_64_64.png gui_inactive_32_32.png ; do cp -v $(builddir)/android/res2/drawable-hdpi/$$i android/res/drawable-hdpi/ ; done ; fi
205 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in flag_bk_tr.png flag_bk_wh.png mini_roundabout.png gui_active_32_32.png gui_arrow_right_32_32.png gui_arrow_left_32_32.png icon_32_32.png unknown_32_32.png gui_zoom_out_64_64.png gui_zoom_in_64_64.png gui_map_32_32.png gui_home_32_32.png gui_actions_64_64.png gui_settings_64_64.png gui_tools_64_64.png gui_about_64_64.png gui_inactive_32_32.png ; do cp -v $(builddir)/android/res2/drawable-mdpi/$$i android/res/drawable-mdpi/ ; done ; fi
206 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in flag_bk_tr.png flag_bk_wh.png mini_roundabout.png gui_active_32_32.png gui_arrow_right_32_32.png gui_arrow_left_32_32.png icon_32_32.png unknown_32_32.png gui_zoom_out_64_64.png gui_zoom_in_64_64.png gui_map_32_32.png gui_home_32_32.png gui_actions_64_64.png gui_settings_64_64.png gui_tools_64_64.png gui_about_64_64.png gui_inactive_32_32.png ; do cp -v $(builddir)/android/res2/drawable-ldpi/$$i android/res/drawable-ldpi/ ; done ; fi
207 # gui icons
208 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-hdpi && echo gui*64_64*png); do cp -v $(builddir)/android/res2/drawable-hdpi/$$i android/res/drawable-hdpi/ ; done ; fi
209 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-mdpi && echo gui*64_64*png); do cp -v $(builddir)/android/res2/drawable-mdpi/$$i android/res/drawable-mdpi/ ; done ; fi
210 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-ldpi && echo gui*64_64*png); do cp -v $(builddir)/android/res2/drawable-ldpi/$$i android/res/drawable-ldpi/ ; done ; fi
211 # nav icons
212 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-hdpi && echo nav_*png); do cp -v $(builddir)/android/res2/drawable-hdpi/$$i android/res/drawable-hdpi/ ; done ; fi
213 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-mdpi && echo nav_*png); do cp -v $(builddir)/android/res2/drawable-mdpi/$$i android/res/drawable-mdpi/ ; done ; fi
214 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd android/res2/drawable-ldpi && echo nav_*png); do cp -v $(builddir)/android/res2/drawable-ldpi/$$i android/res/drawable-ldpi/ ; done ; fi
215 # POIs
216 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.png atm.png bank.png fuel.png gui_select_street_32_32.png gui_select_town_32_32.png gui_select_country_32_32.png ; do cp -v $(builddir)/android/res2/drawable-hdpi/$$i android/res/drawable-hdpi/ ; done ; fi
217 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.png atm.png bank.png fuel.png gui_select_street_32_32.png gui_select_town_32_32.png gui_select_country_32_32.png ; do cp -v $(builddir)/android/res2/drawable-mdpi/$$i android/res/drawable-mdpi/ ; done ; fi
218 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.png atm.png bank.png fuel.png gui_select_street_32_32.png gui_select_town_32_32.png gui_select_country_32_32.png ; do cp -v $(builddir)/android/res2/drawable-ldpi/$$i android/res/drawable-ldpi/ ; done ; fi
219 # more POIs
220 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in airport.png attraction.png bar.png beer.png bench.png boat_ramp.png boundary_stone.png bus.png cafe.png camping.png church.png cinema.png danger.png exit.png fastfood.png firebrigade.png fountain.png golf.png heliport.png hospital.png hotel.png information.png justice.png mark.png military.png mini_roundabout.png museum.png parking.png peak.png pharmacy.png police.png post.png repair_service.png resort.png restaurant.png ruins.png school.png shop_grocery.png shopping.png skiing.png stadium.png swimming.png tec_common.png telephone.png toilets.png viewpoint.png wifi.png zoom_in.png zoom_out.png zoo.png ; do cp -v $(builddir)/android/res2/drawable-hdpi/$$i android/res/drawable-hdpi/ ; done ; fi
221 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in airport.png attraction.png bar.png beer.png bench.png boat_ramp.png boundary_stone.png bus.png cafe.png camping.png church.png cinema.png danger.png exit.png fastfood.png firebrigade.png fountain.png golf.png heliport.png hospital.png hotel.png information.png justice.png mark.png military.png mini_roundabout.png museum.png parking.png peak.png pharmacy.png police.png post.png repair_service.png resort.png restaurant.png ruins.png school.png shop_grocery.png shopping.png skiing.png stadium.png swimming.png tec_common.png telephone.png toilets.png viewpoint.png wifi.png zoom_in.png zoom_out.png zoo.png ; do cp -v $(builddir)/android/res2/drawable-mdpi/$$i android/res/drawable-mdpi/ ; done ; fi
222 # if [ "$(builddir)" != "$(srcdir)" ]; then for i in airport.png attraction.png bar.png beer.png bench.png boat_ramp.png boundary_stone.png bus.png cafe.png camping.png church.png cinema.png danger.png exit.png fastfood.png firebrigade.png fountain.png golf.png heliport.png hospital.png hotel.png information.png justice.png mark.png military.png mini_roundabout.png museum.png parking.png peak.png pharmacy.png police.png post.png repair_service.png resort.png restaurant.png ruins.png school.png shop_grocery.png shopping.png skiing.png stadium.png swimming.png tec_common.png telephone.png toilets.png viewpoint.png wifi.png zoom_in.png zoom_out.png zoo.png ; do cp -v $(builddir)/android/res2/drawable-ldpi/$$i android/res/drawable-ldpi/ ; done ; fi
223 # rest of nav_ icons
224 # if [ "$(builddir)" != "$(srcdir)" ]; then cp -v $(builddir)/android/res2/drawable-hdpi/nav_destination_bk_59_59.png android/res/drawable-hdpi/nav_destination_bk.png ; fi
225 # if [ "$(builddir)" != "$(srcdir)" ]; then cp -v $(builddir)/android/res2/drawable-mdpi/nav_destination_bk_59_59.png android/res/drawable-mdpi/nav_destination_bk.png ; fi
226 # if [ "$(builddir)" != "$(srcdir)" ]; then cp -v $(builddir)/android/res2/drawable-ldpi/nav_destination_bk_59_59.png android/res/drawable-ldpi/nav_destination_bk.png ; fi
227
228 # if release build -> then compress png images (this takes a long time!!!)
229 #
230 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then find android/res/drawable-hdpi/ -maxdepth 1 -type f -exec $(srcdir)/../pngout-static -c6 -f6 -y {} \; ; fi ; fi
231 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then find android/res/drawable-mdpi/ -maxdepth 1 -type f -exec $(srcdir)/../pngout-static -c6 -f6 -y {} \; ; fi ; fi
232 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then find android/res/drawable-ldpi/ -maxdepth 1 -type f -exec $(srcdir)/../pngout-static -c6 -f6 -y {} \; ; fi ; fi
233
234 # remove old libs
235 ls -al android/libs/$(b_arch)/lib*.so
236 rm -f android/libs/$(b_arch)/libgraphics_android.so
237 rm -f android/libs/$(b_arch)/libgraphics_null.so
238 rm -f android/libs/$(b_arch)/libgui_internal.so
239 rm -f android/libs/$(b_arch)/libmap_binfile.so
240 rm -f android/libs/$(b_arch)/libmap_csv.so
241 rm -f android/libs/$(b_arch)/libmap_filter.so
242 rm -f android/libs/$(b_arch)/libmap_mg.so
243 rm -f android/libs/$(b_arch)/libmap_shapefile.so
244 rm -f android/libs/$(b_arch)/libmap_textfile.so
245 rm -f android/libs/$(b_arch)/libosd_core.so
246 rm -f android/libs/$(b_arch)/libspeech_android.so
247 rm -f android/libs/$(b_arch)/libvehicle_android.so
248 rm -f android/libs/$(b_arch)/libvehicle_demo.so
249 rm -f android/libs/$(b_arch)/libvehicle_file.so
250 rm -f android/libs/$(b_arch)/libvehicle_pipe.so
251 rm -f android/libs/$(b_arch)/libvehicle_serial.so
252 rm -f android/libs/$(b_arch)/libvehicle_socket.so
253
254 # clean up
255 # rm android/res2/drawable-hdpi/*
256 # rm android/res2/drawable-mdpi/*
257 # rm android/res2/drawable-ldpi/*
258
259 mkdir -p android/res/raw
260 for i in $(shell cd ../po && echo *.mo); do cp ../po/$$i android/res/raw/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done
261 # cp navit.xml android/res/raw
262 cp navit_android_mdpi.xml android/res/raw/navitmdpi.xml
263 cp navit_android_ldpi.xml android/res/raw/navitldpi.xml
264 cp navit_android_hdpi.xml android/res/raw/navithdpi.xml
265
266 # cleanup svn dirs, they should never be in build dir
267 if [ "$(builddir)" != "$(srcdir)" ]; then find $(builddir) -type d -name '\.svn' -exec rm -Rf {} \; ; fi; echo "ignore the find errors!!"
268
269 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/libs/$(b_arch) ; fi
270 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then install -p $(NDK)/prebuilt/android-arm/gdbserver/gdbserver android/libs/$(b_arch)/gdbserver ; fi
271 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/libs/$(b_arch) ; fi
272 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/obj/local/$(b_arch) ; fi
273 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then cp android/libs/$(b_arch)/*.so android/obj/local/$(b_arch)/ ; fi
274 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then echo "set solib-search-path $(builddir)/obj/local/$(b_arch)" > android/libs/$(b_arch)/gdb.setup ; fi
275 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then echo "directory $(NDK)/platforms/android-""$(AND_API_LEVEL_C)""/arch-arm/usr/include $(NDK)/sources/cxx-stl/system" >> android/libs/$(b_arch)/gdb.setup ; fi
276
277 # strip libs if release build is selected
278 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then echo "stripping libs ..."; arm-linux-androideabi-strip --strip-unneeded $(builddir)/android/libs/armeabi/* ; echo "done" ; fi
279 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then echo "stripping libs ..."; arm-linux-androideabi-strip --strip-unneeded $(builddir)/android/libs/armeabi-v7a/* ; echo "done" ; fi
280 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then echo "stripping libs ..."; /home/navit/_navit_develop/_need/NDK/_unpack/android-ndk-r5c/toolchains/x86-4.8/prebuilt/linux-x86/bin/i686-linux-android-strip --strip-unneeded $(builddir)/android/libs/x86/* ; echo "done" ; fi
281
282
283 apkg: apkg-all
284 touch $(srcdir)/android/dummy.txt
285 touch $(builddir)/android/dummy.txt
286 cd android && ant debug
287 # zipalign is already run automatically
288
289 apkg-release: apkg-all
290 touch $(srcdir)/android/dummy.txt
291 touch $(builddir)/android/dummy.txt
292 cd android && ant release
293 # jarsigner $$(cat ~/.keys_args) android/bin/Navit-unsigned.apk mykey
294 # zipalign -f 4 android/bin/Navit-unsigned.apk android/bin/Navit-aligned.apk
295 /home/navit/_navit_develop/_need/SDK/_unpack/android-sdk-linux_SDK_r22.0.1/build-tools/21.1.1/zipalign -f 4 android/bin/Navit-release-unsigned.apk android/bin/Navit-aligned.apk
296 cp android/bin/Navit-aligned.apk android/bin/Navit-debug.apk
297 else
298 navit_SOURCES = start.c
299 navit_LDADD = lib@LIBNAVIT@.la
300
301 endif
302
303 if EVENT_GLIB
304 lib@LIBNAVIT@_la_SOURCES += event_glib.c
305 endif
306
307 if !PLUGINS
308 lib@LIBNAVIT@_la_SOURCES += builtin.c
309 lib@LIBNAVIT@_la_LIBADD += $(MODULES)
310 endif
311
312 navit_LDFLAGS = -export-dynamic
313
314 navit_LDADD += @NAVIT_LIBS@ @WORDEXP_LIBS@ @ZLIB_LIBS@ @CRYPTO_LIBS@ @INTLLIBS@
315
316 if SUPPORT_WIN32
317 navit_LDADD += resource.rsc
318 if SUPPORT_WIN32CE
319 navit_LDADD += -lcommctrl -Lsupport/libc
320 else
321 navit_LDADD += -lgdi32 -lcomctl32 -lwinmm
322 endif
323
324
325 resource.rsc: $(top_srcdir)/navit/gui/win32/resources/resource.rc
326 $(WINDRES) -I $(top_srcdir)/navit/gui/win32/resources $(top_srcdir)/navit/gui/win32/resources/resource.rc resource.rsc
327 endif
328
329 .PHONY: version.h.tmp
330
331 version.h.tmp:
332 echo "#include \"config.h\"" >version.h.tmp
333 if SOURCE_MODE_SVN
334 echo "#define SVN_VERSION \"$$(LANG=C svnversion $(top_srcdir) 2>/dev/null)\"" >>version.h.tmp
335 else
336 echo "#define SVN_VERSION \"@SOURCE_MODE@\"" >>version.h.tmp
337 endif
338 echo "#define NAVIT_VARIANT \"@NAVIT_VARIANT@\"" >>version.h.tmp
339 if ! diff version.h.tmp version.h >/dev/null 2>/dev/null; \
340 then \
341 mv version.h.tmp version.h; \
342 fi
343
344 version.h: version.h.tmp
345
346 navit_config.h: ../config.h
347 cp ../config.h navit_config.h.tmp
348 if ! diff navit_config.h.tmp navit_config.h >/dev/null 2>/dev/null; \
349 then \
350 mv navit_config.h.tmp navit_config.h; \
351 fi
352
353
354 distclean-local:
355 rm -f version.h version.h.tmp navit_config.h navit_config.h.tmp builtin.c support-builtin.c navit.xml
356 if [ "$(top_builddir)" != "$(top_srcdir)" ]; then rm -f navit.dtd; fi
357
358 builtin.c: $(top_builddir)/config.h
359 ls $(top_builddir)/navit/*/*/*.la | sed -e "s/\.la/_init(void);/" -e "s/.*lib/extern void module_/" >builtin.c
360 echo "extern void builtin_init(void);" >>builtin.c
361 echo "void builtin_init(void) {" >>builtin.c
362 ls $(top_builddir)/navit/*/*/*.la | sed -e "s/\.la/_init();/" -e "s/.*\\/lib/ module_/" >>builtin.c
363 echo "}" >>builtin.c
364 support-builtin.c: $(top_builddir)/config.h
365 ls $(top_builddir)/navit/support/*/*.la | sed -e "s/\.la/_init(void);/" -e "s/.*lib/extern void module_/" >support-builtin.c
366 echo "extern void builtin_init(void);" >>support-builtin.c
367 echo "void builtin_init(void) {" >>support-builtin.c
368 ls $(top_builddir)/navit/support/*/*.la | sed -e "s/\.la/_init();/" -e "s/.*\\/lib/ module_/" >>support-builtin.c
369 echo "}" >>support-builtin.c

   
Visit the ZANavi Wiki