comparison 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
comparison
equal deleted inserted replaced
464:271212f325b4 465:d8181696b689
29 29
30 if X_SUPP 30 if X_SUPP
31 libmbfly_la_SOURCES += X_supp.c 31 libmbfly_la_SOURCES += X_supp.c
32 endif 32 endif
33 33
34 if CAIRO_BACKEND
35 libmbfly_la_SOURCES += graph_engine_cairo.c
36
34 libmbfly_la_CPPFLAGS = @cairo_CFLAGS@ @pangocairo_CFLAGS@ 37 libmbfly_la_CPPFLAGS = @cairo_CFLAGS@ @pangocairo_CFLAGS@
35 libmbfly_la_LDFLAGS = @cairo_LIBS@ @pangocairo_LIBS@ 38 libmbfly_la_LDFLAGS = @cairo_LIBS@ @pangocairo_LIBS@
39 endif
36 40
37 X_main_SOURCES = X_main.c 41 X_main_SOURCES = X_main.c
38 X_main_LDADD = $(top_builddir)/src/libmbfly.la 42 X_main_LDADD = $(top_builddir)/src/libmbfly.la
39 X_main_CPPFLAGS = @pangocairo_CFLAGS@ -I$(top_builddir)/include 43 X_main_CPPFLAGS = @pangocairo_CFLAGS@ -I$(top_builddir)/include
40 X_main_LDFLAGS = @pangocairo_LIBS@ 44 X_main_LDFLAGS = @pangocairo_LIBS@