view examples/calculator/Makefile.am @ 455:58b6337fb3b2

Fix bugs of pending keys of animated menu. - When more than one pending key, the animation would be stoped. - Now, we have a cyclic queue to keep at most 15 pending keys to make sure pending keys being dispatched without stop current animation program.
author Thinker K.F. Li <thinker@branda.to>
date Thu, 06 Aug 2009 13:15:57 +0800
parents 331467b8e778
children 97bf0ff7a038 c6481c41ac79
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 -s $? $@

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 $< > $@