Mercurial > MadButterfly
view examples/drag/Makefile.am @ 425:09a66063b25d
Fix issue of missed function for unittest.
If we make for unittest, it will be failed for missed functions.
Since we change name of functions to avoid type conflict,
ld can not find the functions with original names.
So, we make dummy functions to resolve it.
We had better decouple them to avoid this problem.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Tue, 28 Jul 2009 15:11:42 +0800 |
parents | a90fd749af82 |
children | 757bb247a072 |
line wrap: on
line source
include $(top_srcdir)/config.mk noinst_PROGRAMS = ex1 EXTRA_DIST = menu.svg ex1_SOURCES = main.c nodist_ex1_SOURCES = menu.c menu.h ex1_CPPFLAGS = @pangocairo_CFLAGS@ -I$(top_srcdir) ex1_LDFLAGS = @pangocairo_LIBS@ ex1_LDADD = $(top_builddir)/src/libmbfly.la BUILT_SOURCES = menu.c menu.h menu.mb CLEANFILES = menu.c menu.h menu.mb menu.mb: $(srcdir)/menu.svg $(top_srcdir)/tools/svg2code.py $? $@ menu.h: menu.mb m4 -I $(top_srcdir)/tools mb_c_header.m4 $< > $@ menu.c: menu.mb m4 -I $(top_srcdir)/tools mb_c_source.m4 $< > $@