HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.2 KiB
74 lines
1.2 KiB
# Process this file with automake to produce Makefile.in |
|
|
|
NULL = |
|
EXTRA_DIST = |
|
CLEANFILES = |
|
DISTCLEANFILES = |
|
MAINTAINERCLEANFILES = |
|
|
|
bin_PROGRAMS = |
|
|
|
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) |
|
|
|
if HAVE_GLIB |
|
if HAVE_FREETYPE |
|
|
|
if HAVE_CAIRO_FT |
|
hb_view_SOURCES = \ |
|
hb-view.cc \ |
|
options.cc \ |
|
options.hh \ |
|
main-font-text.hh \ |
|
shape-consumer.hh \ |
|
ansi-print.cc \ |
|
ansi-print.hh \ |
|
helper-cairo.cc \ |
|
helper-cairo.hh \ |
|
helper-cairo-ansi.cc \ |
|
helper-cairo-ansi.hh \ |
|
view-cairo.cc \ |
|
view-cairo.hh \ |
|
$(NULL) |
|
hb_view_LDADD = \ |
|
$(LDADD) \ |
|
$(CAIRO_LIBS) \ |
|
$(CAIRO_FT_LIBS) \ |
|
$(NULL) |
|
bin_PROGRAMS += hb-view |
|
endif # HAVE_CAIRO_FT |
|
|
|
hb_shape_SOURCES = \ |
|
hb-shape.cc \ |
|
options.cc \ |
|
options.hh \ |
|
main-font-text.hh \ |
|
shape-consumer.hh \ |
|
$(NULL) |
|
bin_PROGRAMS += hb-shape |
|
|
|
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 |
|
|
|
-include $(top_srcdir)/git.mk
|
|
|