2011-08-09 15:03:00 +02:00
|
|
|
# Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
NULL =
|
|
|
|
EXTRA_DIST =
|
|
|
|
CLEANFILES =
|
|
|
|
DISTCLEANFILES =
|
|
|
|
MAINTAINERCLEANFILES =
|
|
|
|
|
|
|
|
bin_PROGRAMS =
|
|
|
|
|
2011-09-19 22:41:17 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src/ \
|
|
|
|
-I$(top_builddir)/src/ \
|
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
$(FREETYPE_CFLAGS) \
|
|
|
|
$(CAIRO_FT_CFLAGS) \
|
|
|
|
$(NULL)
|
|
|
|
LDADD = \
|
|
|
|
$(top_builddir)/src/libharfbuzz.la \
|
|
|
|
-lm \
|
|
|
|
$(GLIB_LIBS) \
|
|
|
|
$(FREETYPE_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
|
2011-08-09 15:03:00 +02:00
|
|
|
if HAVE_GLIB
|
|
|
|
if HAVE_FREETYPE
|
2012-05-16 05:53:18 +02:00
|
|
|
|
2011-08-09 15:03:00 +02:00
|
|
|
if HAVE_CAIRO_FT
|
2011-08-11 11:54:31 +02:00
|
|
|
hb_view_SOURCES = \
|
|
|
|
hb-view.cc \
|
|
|
|
options.cc \
|
|
|
|
options.hh \
|
2012-05-16 05:10:39 +02:00
|
|
|
main-font-text.hh \
|
|
|
|
shape-consumer.hh \
|
|
|
|
ansi-print.cc \
|
|
|
|
ansi-print.hh \
|
2011-09-19 22:41:17 +02:00
|
|
|
helper-cairo.cc \
|
|
|
|
helper-cairo.hh \
|
2012-05-13 02:02:58 +02:00
|
|
|
helper-cairo-ansi.cc \
|
|
|
|
helper-cairo-ansi.hh \
|
2011-09-13 19:30:39 +02:00
|
|
|
view-cairo.cc \
|
|
|
|
view-cairo.hh \
|
2011-08-11 11:54:31 +02:00
|
|
|
$(NULL)
|
|
|
|
hb_view_LDADD = \
|
2011-09-19 22:41:17 +02:00
|
|
|
$(LDADD) \
|
|
|
|
$(CAIRO_LIBS) \
|
2011-08-11 11:54:31 +02:00
|
|
|
$(CAIRO_FT_LIBS) \
|
|
|
|
$(NULL)
|
2011-08-09 15:03:00 +02:00
|
|
|
bin_PROGRAMS += hb-view
|
2012-05-16 05:53:18 +02:00
|
|
|
endif # HAVE_CAIRO_FT
|
2011-09-19 22:41:17 +02:00
|
|
|
|
|
|
|
hb_shape_SOURCES = \
|
|
|
|
hb-shape.cc \
|
|
|
|
options.cc \
|
|
|
|
options.hh \
|
2012-05-16 05:10:39 +02:00
|
|
|
main-font-text.hh \
|
|
|
|
shape-consumer.hh \
|
2011-09-19 22:41:17 +02:00
|
|
|
$(NULL)
|
|
|
|
bin_PROGRAMS += hb-shape
|
2012-05-16 05:53:18 +02:00
|
|
|
|
|
|
|
if HAVE_OT
|
|
|
|
hb_ot_shape_closure_SOURCES = \
|
|
|
|
hb-ot-shape-closure.cc \
|
|
|
|
options.cc \
|
|
|
|
options.hh \
|
|
|
|
main-font-text.hh \
|
|
|
|
$(NULL)
|
|
|
|
bin_PROGRAMS += hb-ot-shape-closure
|
|
|
|
endif # HAVE_OT
|
|
|
|
|
|
|
|
endif # HAVE_FREETYPE
|
|
|
|
endif # HAVE_GLIB
|
2011-08-09 15:03:00 +02:00
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|