view examples/calculator/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 a90fd749af82
children 331467b8e778
line wrap: on
line source

include $(top_srcdir)/config.mk

noinst_PROGRAMS = calc
EXTRA_DIST = calculator_scr.svg

calc_SOURCES = main.c
nodist_calc_SOURCES = calculator_scr.c calculator_scr.h
calc_CPPFLAGS = @pangocairo_CFLAGS@ $(INCLUDES)
calc_LDFLAGS = @pangocairo_LIBS@ 
calc_LDADD = $(top_builddir)/src/libmbfly.la
BUILT_SOURCES = calculator_scr.c calculator_scr.h calculator_scr.mb
CLEANFILES = calculator_scr.c calculator_scr.h calculator_scr.mb

calculator_scr.mb: $(srcdir)/calculator_scr.svg
	$(top_srcdir)/tools/svg2code.py $? $@

calculator_scr.h: calculator_scr.mb
	m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@

calculator_scr.c: calculator_scr.mb
	m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@