view examples/calculator/Makefile.am @ 234:889cdc5f23c5

When a scene is selected to0 edit, we copy all of its elements out of the scene so that inkscape can edit it directly. All elements add or delete by the inkspcae will be put back when we switch the scene. The svg2code.py must recognize this structure.
author wycc
date Wed, 24 Dec 2008 23:43:39 +0800
parents 2637519e2bd7
children a90fd749af82
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 = @cairo_CFLAGS@ $(INCLUDES)
calc_LDFLAGS = @cairo_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 $< > $@