Mercurial > MadButterfly
view examples/calculator/Makefile.am @ 462:af4b506ad56f
Add backend layer to seperate the backend with the MBAF. Currently, X is the only backend. If we have more than one backend, we need to modify the Makefile to sleect the backend or implement a backend selection mechanism in the runtime.
author | wycc@122-116-38-188.HINET-IP.hinet.net |
---|---|
date | Wed, 28 Oct 2009 02:39:02 +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 $< > $@