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

Contents of /navit/navit/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (show annotations) (download)
Mon Feb 4 17:41:59 2013 UTC (11 years, 1 month ago) by zoff99
File size: 17558 byte(s)
new map version, lots of fixes and experimental 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 support vehicle 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
63 XSLTS=@XSLTS@
64 navit.xml: navit_shipped.xml $(foreach xslt, $(subst $(comma), ,$(XSLTS)), $(addsuffix .xslt,$(addprefix xslt/,$(xslt)))) navit_android_xml
65 cp $< navit.xml.new
66 if [ ! -f navit.dtd ]; then cp -f $(top_srcdir)/navit/navit.dtd .; fi
67 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
68 mv navit.xml.new navit.xml
69 rm -f navit.xml.tmp
70
71 navit_android_xml: navit_shipped.xml
72 if SUPPORT_ANDROID
73 # new android xml files for (mdpi,ldpi,hdpi)
74 cp $(srcdir)/navit_shipped.xml navit_android.xml.new
75 if [ ! -f navit.dtd ]; then cp -f $(top_srcdir)/navit/navit.dtd .; fi
76
77 # # now apply any other xslt files (this would allow for pedestrian plugin)
78 # 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
79 # # for now disable pedestrian plugin (zoff99)
80
81 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_mdpi.xslt >navit_android_mdpi.xml.tmp
82 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_ldpi.xslt >navit_android_ldpi.xml.tmp
83 @SAXON@ -snone navit_android.xml.new $(srcdir)/xslt/android_hdpi.xslt >navit_android_hdpi.xml.tmp
84 rm -f navit_android.xml.new
85 rm -f navit_android.xml.new.tmp
86 mv navit_android_mdpi.xml.tmp navit_android_mdpi.xml
87 mv navit_android_ldpi.xml.tmp navit_android_ldpi.xml
88 mv navit_android_hdpi.xml.tmp navit_android_hdpi.xml
89 rm -f navit_android_mdpi.xml.tmp
90 rm -f navit_android_ldpi.xml.tmp
91 rm -f navit_android_hdpi.xml.tmp
92 else
93 echo "no Android support"
94 endif
95
96 if SUPPORT_ANDROID
97 lib@LIBNAVIT@_la_SOURCES += android.c
98 navit_SOURCES =
99 navit_LDADD =
100
101 v_int = $$(cat $(srcdir)/android/Android_Market_Version_int.txt|grep v_int|cut -d ":" -f 2)
102 v_name = "1.0.0-"$$(LANG=C svnversion $(top_srcdir) 2> /dev/null|tr -d ":A-Z" 2> /dev/null)
103 b_arch = $(shell if [ "$(DO_X86_BUILD)" == "1" ]; then echo "x86";else echo "armeabi"; fi)
104
105
106 android/AndroidManifest.xml: android/AndroidManifest.xml.in
107 mkdir -p $(builddir)/android
108 mkdir -p $(builddir)/android/res2/drawable-hdpi
109 mkdir -p $(builddir)/android/res2/drawable-mdpi
110 mkdir -p $(builddir)/android/res2/drawable-ldpi
111
112 sed '0,/<uses-sdk/!d' <$< >$@
113 for i in $(subst $(comma), ,@ANDROID_PERMISSIONS@); do echo " <uses-permission android:name=\"android.permission.$$i\" />" >>$@; done
114 sed '0,/<uses-sdk/d' <$< >>$@
115 sed -e "s/@ANDROID_VERSION_INT@/$(v_int)/" <$@ >android/AndroidManifest.xml.tmp
116 mv android/AndroidManifest.xml.tmp $@
117 sed -e "s/@ANDROID_VERSION_NAME@/$(v_name)/" <$@ >android/AndroidManifest.xml.tmp
118 mv android/AndroidManifest.xml.tmp $@
119
120 android/build.xml: android/AndroidManifest.xml android/dummy.txt
121 # this is needed, otherwise somehow the files cant be deleted
122 mkdir -p $(builddir)/android/src/
123 if [ "$(builddir)" != "$(srcdir)" ]; then chmod -R u+w $(builddir)/android/src/; fi
124 if [ "$(builddir)" != "$(srcdir)" ]; then rm -Rf $(builddir)/android/src/; fi
125 if [ "$(builddir)" != "$(srcdir)" ]; then cp -rpf $(srcdir)/android/* $(builddir)/android; fi
126 touch $(srcdir)/android/dummy.txt
127 touch $(builddir)/android/dummy.txt
128 android update project -t @ANDROID_PROJECT@ -p android
129
130 apkg-all: all android/build.xml navit.xml
131
132 mkdir -p android/libs/$(b_arch)
133 cp .libs/*.so android/libs/$(b_arch)/libnavit.so
134 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
135
136 mkdir -p android/res/drawable-ldpi
137 mkdir -p android/res/drawable-mdpi
138 mkdir -p android/res/drawable-hdpi
139 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.xpm); do convert $(srcdir)/xpm/$$i android/res/drawable-mdpi/$${i%.xpm}.png; done ; fi
140 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.xpm); do convert -resize 75% $(srcdir)/xpm/$$i android/res/drawable-ldpi/$${i%.xpm}.png; done ; fi
141 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.xpm); do convert -resize 150% $(srcdir)/xpm/$$i android/res/drawable-hdpi/$${i%.xpm}.png; done ; fi
142
143 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.png); do convert $(srcdir)/xpm/$$i android/res/drawable-mdpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi
144 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.png); do convert -resize 75% $(srcdir)/xpm/$$i android/res/drawable-ldpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi
145 if [ "$(DO_PNG_BUILD)" == "1" ]; then for i in $(shell cd $(srcdir)/xpm && echo *.png); do convert -resize 150% $(srcdir)/xpm/$$i android/res/drawable-hdpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi
146
147 mkdir -p android/res2/drawable-hdpi
148 mkdir -p android/res2/drawable-mdpi
149 mkdir -p android/res2/drawable-ldpi
150 if [ "$(DO_PNG_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd $(builddir)/xpm && echo *.png); do convert $(builddir)/xpm/$$i android/res2/drawable-mdpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi ; fi
151 if [ "$(DO_PNG_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd $(builddir)/xpm && echo *.png); do convert -resize 75% $(builddir)/xpm/$$i android/res2/drawable-ldpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi ; fi
152 if [ "$(DO_PNG_BUILD)" == "1" ]; then if [ "$(builddir)" != "$(srcdir)" ]; then for i in $(shell cd $(builddir)/xpm && echo *.png); do convert -resize 150% $(builddir)/xpm/$$i android/res2/drawable-hdpi/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done ; fi ; fi
153
154 # only use needed pngs to make size of apk smaller
155 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
156 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
157 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
158 # gui icons
159 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
160 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
161 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
162 # nav icons
163 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
164 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
165 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
166 # POIs
167 if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.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
168 if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.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
169 if [ "$(builddir)" != "$(srcdir)" ]; then for i in traffic_signals.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
170 # rest of nav_ icons
171 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
172 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
173 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
174
175 # clean up
176 # rm android/res2/drawable-hdpi/*
177 # rm android/res2/drawable-mdpi/*
178 # rm android/res2/drawable-ldpi/*
179
180
181 mkdir -p android/res/raw
182 for i in $(shell cd ../po && echo *.mo); do cp ../po/$$i android/res/raw/$$( echo $$i | tr "[A-Z]" "[a-z]") ; done
183 # cp navit.xml android/res/raw
184 cp navit_android_mdpi.xml android/res/raw/navitmdpi.xml
185 cp navit_android_ldpi.xml android/res/raw/navitldpi.xml
186 cp navit_android_hdpi.xml android/res/raw/navithdpi.xml
187
188 # cleanup svn dirs, they should never be in build dir
189 if [ "$(builddir)" != "$(srcdir)" ]; then find $(builddir) -type d -name '\.svn' -exec rm -Rf {} \; ; fi; echo "ignore the find errors!!"
190
191 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/libs/$(b_arch) ; fi
192 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then install -p $(NDK)/toolchains/arm-linux-androideabi-4.4.3/prebuilt/gdbserver android/libs/$(b_arch)/gdbserver ; fi
193 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/libs/$(b_arch) ; fi
194 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then mkdir -p android/obj/local/$(b_arch) ; fi
195 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then cp android/libs/$(b_arch)/*.so android/obj/local/$(b_arch)/ ; fi
196 if [ "$(DO_RELEASE_BUILD)" != "1" ]; then echo "set solib-search-path $(builddir)/obj/local/$(b_arch)" > android/libs/$(b_arch)/gdb.setup ; fi
197 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
198
199 # strip libs if release build is selected
200 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then echo "stripping libs ..."; arm-linux-androideabi-strip --strip-unneeded $(builddir)/android/libs/armeabi/* ; echo "done" ; fi
201 if [ "$(DO_RELEASE_BUILD)" == "1" ]; then echo "stripping libs ..."; i686-android-linux-strip --strip-unneeded $(builddir)/android/libs/x86/* ; echo "done" ; fi
202
203
204 apkg: apkg-all
205 touch $(srcdir)/android/dummy.txt
206 touch $(builddir)/android/dummy.txt
207 cd android && ant debug
208 # zipalign is already run automatically
209
210 apkg-release: apkg-all
211 touch $(srcdir)/android/dummy.txt
212 touch $(builddir)/android/dummy.txt
213 cd android && ant release
214 # jarsigner $$(cat ~/.keys_args) android/bin/Navit-unsigned.apk mykey
215 # zipalign -f 4 android/bin/Navit-unsigned.apk android/bin/Navit-aligned.apk
216 zipalign -f 4 android/bin/Navit-release-unsigned.apk android/bin/Navit-aligned.apk
217 cp android/bin/Navit-aligned.apk android/bin/Navit-debug.apk
218 else
219 navit_SOURCES = start.c
220 navit_LDADD = lib@LIBNAVIT@.la
221
222 endif
223
224 if EVENT_GLIB
225 lib@LIBNAVIT@_la_SOURCES += event_glib.c
226 endif
227
228 if !PLUGINS
229 lib@LIBNAVIT@_la_SOURCES += builtin.c
230 lib@LIBNAVIT@_la_LIBADD += $(MODULES)
231 endif
232
233 navit_LDFLAGS = -export-dynamic
234
235 navit_LDADD += @NAVIT_LIBS@ @WORDEXP_LIBS@ @ZLIB_LIBS@ @CRYPTO_LIBS@ @INTLLIBS@
236
237 if SUPPORT_WIN32
238 navit_LDADD += resource.rsc
239 if SUPPORT_WIN32CE
240 navit_LDADD += -lcommctrl -Lsupport/libc
241 else
242 navit_LDADD += -lgdi32 -lcomctl32 -lwinmm
243 endif
244
245
246 resource.rsc: $(top_srcdir)/navit/gui/win32/resources/resource.rc
247 $(WINDRES) -I $(top_srcdir)/navit/gui/win32/resources $(top_srcdir)/navit/gui/win32/resources/resource.rc resource.rsc
248 endif
249
250 .PHONY: version.h.tmp
251
252 version.h.tmp:
253 echo "#include \"config.h\"" >version.h.tmp
254 if SOURCE_MODE_SVN
255 echo "#define SVN_VERSION \"$$(LANG=C svnversion $(top_srcdir) 2>/dev/null)\"" >>version.h.tmp
256 else
257 echo "#define SVN_VERSION \"@SOURCE_MODE@\"" >>version.h.tmp
258 endif
259 echo "#define NAVIT_VARIANT \"@NAVIT_VARIANT@\"" >>version.h.tmp
260 if ! diff version.h.tmp version.h >/dev/null 2>/dev/null; \
261 then \
262 mv version.h.tmp version.h; \
263 fi
264
265 version.h: version.h.tmp
266
267 navit_config.h: ../config.h
268 cp ../config.h navit_config.h.tmp
269 if ! diff navit_config.h.tmp navit_config.h >/dev/null 2>/dev/null; \
270 then \
271 mv navit_config.h.tmp navit_config.h; \
272 fi
273
274
275 distclean-local:
276 rm -f version.h version.h.tmp navit_config.h navit_config.h.tmp builtin.c support-builtin.c navit.xml
277 if [ "$(top_builddir)" != "$(top_srcdir)" ]; then rm -f navit.dtd; fi
278
279 builtin.c: $(top_builddir)/config.h
280 ls $(top_builddir)/navit/*/*/*.la | sed -e "s/\.la/_init(void);/" -e "s/.*lib/extern void module_/" >builtin.c
281 echo "extern void builtin_init(void);" >>builtin.c
282 echo "void builtin_init(void) {" >>builtin.c
283 ls $(top_builddir)/navit/*/*/*.la | sed -e "s/\.la/_init();/" -e "s/.*\\/lib/ module_/" >>builtin.c
284 echo "}" >>builtin.c
285 support-builtin.c: $(top_builddir)/config.h
286 ls $(top_builddir)/navit/support/*/*.la | sed -e "s/\.la/_init(void);/" -e "s/.*lib/extern void module_/" >support-builtin.c
287 echo "extern void builtin_init(void);" >>support-builtin.c
288 echo "void builtin_init(void) {" >>support-builtin.c
289 ls $(top_builddir)/navit/support/*/*.la | sed -e "s/\.la/_init();/" -e "s/.*\\/lib/ module_/" >>support-builtin.c
290 echo "}" >>support-builtin.c

   
Visit the ZANavi Wiki