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.
44 lines
703 B
44 lines
703 B
# Process this file with automake to produce Makefile.in |
|
|
|
NULL = |
|
EXTRA_DIST = |
|
CLEANFILES = |
|
DISTCLEANFILES = |
|
MAINTAINERCLEANFILES = |
|
|
|
bin_PROGRAMS = |
|
|
|
if HAVE_GLIB |
|
if HAVE_FREETYPE |
|
if HAVE_CAIRO_FT |
|
if HAVE_CAIRO_PNG |
|
hb_view_SOURCES = \ |
|
hb-view.cc \ |
|
common.cc \ |
|
common.hh \ |
|
options.cc \ |
|
options.hh \ |
|
$(NULL) |
|
hb_view_CPPFLAGS = \ |
|
-I$(top_srcdir)/src/ \ |
|
-I$(top_builddir)/src/ \ |
|
$(GLIB_CFLAGS) \ |
|
$(FREETYPE_CFLAGS) \ |
|
$(CAIRO_FT_CFLAGS) \ |
|
$(CAIRO_PNG_CFLAGS) \ |
|
$(NULL) |
|
hb_view_LDADD = \ |
|
$(top_builddir)/src/libharfbuzz.la \ |
|
-lm \ |
|
$(GLIB_LIBS) \ |
|
$(FREETYPE_LIBS) \ |
|
$(CAIRO_FT_LIBS) \ |
|
$(CAIRO_PNG_LIBS) \ |
|
$(NULL) |
|
bin_PROGRAMS += hb-view |
|
endif |
|
endif |
|
endif |
|
endif |
|
|
|
-include $(top_srcdir)/git.mk
|
|
|