Mercurial > MadButterfly
view examples/tank/Makefile.am @ 335:01038b8d8f05
Set the progm to be NULL so that we won't call mb_progm_abort when we call it at the next time. This will fix the crash issue of the dynamic. However, the dynamic is still crash sometimes if we click the button quickly. It looks like it crashes in the refresh. We need to future figure out the issue.
author | wycc |
---|---|
date | Sat, 07 Mar 2009 14:24:55 +0800 |
parents | c8b6ca46950b |
children | cb1a65d53878 |
line wrap: on
line source
include $(top_srcdir)/config.mk noinst_PROGRAMS = tank #EXTRA_DIST = svg_sources = brick.c bullet.c bush.c mud.c rock.c \ tank1.c tank2.c tank_en.c bang.c tank_SOURCES = tank_main.c nodist_tank_SOURCES = svgs.h \ $(svg_sources) $(svg_sources:.c=.h) $(svg_sources:.c=.mb) tank_CPPFLAGS = @pangocairo_CFLAGS@ tank_LDFLAGS = @pangocairo_LIBS@ tank_LDADD = $(top_builddir)/src/libmbfly.la BUILT_SOURCES = svgs.h \ $(svg_sources) $(svg_sources:.c=.h) $(svg_sources:.c=.mb) CLEANFILES = svgs.h \ $(svg_sources) $(svg_sources:.c=.h) $(svg_sources:.c=.mb) $(svg_sources): %.c: %.mb m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ $(svg_sources:.c=.h): %.h: %.mb m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ $(svg_sources:.c=.mb): %.mb: $(srcdir)/%.svg $(top_srcdir)/tools/svg2code.py $? $@ svgs.h: $(svg_sources:.c=.h) echo "#ifndef __SVGS_H_" > $@ echo "#define __SVGS_H_" >> $@ echo >> $@ for H in $(svg_sources:.c=.h); do \ echo "#include \"$$H\"" >> $@; \ done echo >> $@ echo "#endif /* __SVGS_H_ */" >> $@