Mercurial > MadButterfly
view src/Makefile.am @ 465:d8181696b689 Android_Skia
Move functions into graphic engine layers.
Cairo and Skia have their own header files and C/C++ files. Some
functions are refactoried and move into graphic engine layer to make
reset of MadButterfly independently from graphic engines.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 12 Nov 2009 21:22:30 +0800 |
parents | 271212f325b4 |
children | cd6f57b9b104 |
line wrap: on
line source
include $(top_srcdir)/config.mk lib_LTLIBRARIES = libmbfly.la noinst_PROGRAMS = if SH_TEXT noinst_PROGRAMS += X_main endif if TESTCASE noinst_PROGRAMS += testcase endif MBAF_SOURCES=mbaf/mbapp.c mbaf/mbbutton.c mbaf/mbobject.c mbaf/animated_menu.c libmbfly_la_SOURCES= animate.c chgcolor.c coord.c event.c geo.c \ observer.c paint.c redraw_man.c rotate.c shape_path.c \ shape_rect.c shift.c subtree_free.c timer.c \ timertool.c tools.c visibility.c prop.c sprite.c \ mouse.c shape_image.c img_ldr.c $(MBAF_SOURCES) if SH_TEXT libmbfly_la_SOURCES += shape_text.c endif if SH_STEXT libmbfly_la_SOURCES += shape_stext.c endif if X_SUPP libmbfly_la_SOURCES += X_supp.c endif if CAIRO_BACKEND libmbfly_la_SOURCES += graph_engine_cairo.c libmbfly_la_CPPFLAGS = @cairo_CFLAGS@ @pangocairo_CFLAGS@ libmbfly_la_LDFLAGS = @cairo_LIBS@ @pangocairo_LIBS@ endif X_main_SOURCES = X_main.c X_main_LDADD = $(top_builddir)/src/libmbfly.la X_main_CPPFLAGS = @pangocairo_CFLAGS@ -I$(top_builddir)/include X_main_LDFLAGS = @pangocairo_LIBS@ testcase_SOURCES = testcase.c $(libmbfly_la_SOURCES) testcase_CFLAGS = -I$(top_builddir)/include \ -DUNITTEST -g @cairo_CFLAGS@ \ @pangocairo_CFLAGS@ testcase_LDFLAGS = -lcunit -L/usr/local/lib/ @pangocairo_LIBS@ EXTRA_PROGRAMS = testcase