Mercurial > MadButterfly
annotate examples/svg2code_ex/Makefile.am @ 179:06a90c35ba67
Add a symbolic link to prevent from compilation error of examples.
author | sylee@eeepc |
---|---|
date | Sun, 02 Nov 2008 11:59:38 +0800 |
parents | d0646a6df46f |
children | ee31a9301a7c |
rev | line source |
---|---|
178 | 1 noinst_PROGRAMS = ex1 |
2 EXTRA_DIST = svg2code_ex.svg | |
3 | |
4 ex1_SOURCES = main.c | |
5 nodist_ex1_SOURCES = svg2code_ex.c svg2code_ex.h | |
179
06a90c35ba67
Add a symbolic link to prevent from compilation error of examples.
sylee@eeepc
parents:
178
diff
changeset
|
6 ex1_CPPFLAGS = @cairo_CFLAGS@ |
178 | 7 ex1_LDFLAGS = @cairo_LIBS@ |
8 ex1_LDADD = $(top_builddir)/src/libmbfly.la | |
9 BUILT_SOURCES = svg2code_ex.c svg2code_ex.h svg2code_ex.mb | |
10 CLEANFILES = svg2code_ex.c svg2code_ex.h svg2code_ex.mb | |
11 | |
12 svg2code_ex.mb: $(srcdir)/svg2code_ex.svg | |
13 $(top_srcdir)/tools/svg2code.py $? $@ | |
14 | |
15 svg2code_ex.h: svg2code_ex.mb | |
16 m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ | |
17 | |
18 svg2code_ex.c: svg2code_ex.mb | |
19 m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@ |