comparison examples/dynamic/Makefile.am @ 242:d3fe0a0f3a8b

Implement MBApp API and modify the dynamic example to use this API.
author wycc
date Wed, 31 Dec 2008 22:37:21 +0800
parents 2637519e2bd7
children 4df1b766bbf5
comparison
equal deleted inserted replaced
241:104d83378582 242:d3fe0a0f3a8b
18 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ 18 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@
19 19
20 menu.c: menu.mb 20 menu.c: menu.mb
21 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ 21 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@
22 22
23 button.so: button.o 23 button.so: button.o button.h
24 gcc -shared -o button.so button.o 24 gcc -shared -o button.so button.o
25 25
26 button.mb: $(srcdir)/button.svg 26 button.mb: $(srcdir)/button.svg
27 $(top_srcdir)/tools/svg2code.py $? $@ 27 $(top_srcdir)/tools/svg2code.py $? $@
28 28
29 button.h: button.mb 29 button.h: button.mb
30 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ 30 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@
31 31
32 button.c: button.mb 32 button.c: button.mb
33 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ 33 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@
34
35 scene.so: scene.o scene.h
36 gcc -shared -o scene.so scene.o
37
38 scene.mb: $(srcdir)/scene.svg
39 $(top_srcdir)/tools/svg2code.py $? $@
40
41 scene.h: scene.mb
42 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@
43
44 scene.c: scene.mb
45 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@