2000-12-20 05:41:36 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
INCLUDES = \
|
2006-01-28 21:29:18 +01:00
|
|
|
$(FREETYPE_CFLAGS)
|
2000-12-20 05:41:36 +01:00
|
|
|
|
2006-03-31 14:28:09 +02:00
|
|
|
noinst_LTLIBRARIES = libharfbuzz-1.la
|
|
|
|
|
|
|
|
SOURCES = \
|
|
|
|
ftglue.c \
|
|
|
|
harfbuzz-buffer.c \
|
|
|
|
harfbuzz-dump.c \
|
|
|
|
harfbuzz-gdef.c \
|
|
|
|
harfbuzz-gpos.c \
|
|
|
|
harfbuzz-gsub.c \
|
|
|
|
harfbuzz-open.c
|
|
|
|
|
|
|
|
EXTRA_SOURCES = harfbuzz.c
|
|
|
|
|
|
|
|
PUBLICHEADERS = \
|
|
|
|
harfbuzz.h \
|
|
|
|
harfbuzz-buffer.h \
|
|
|
|
harfbuzz-dump.h \
|
|
|
|
harfbuzz-gdef.h \
|
|
|
|
harfbuzz-gpos.h \
|
|
|
|
harfbuzz-gsub.h \
|
|
|
|
harfbuzz-open.h
|
|
|
|
|
|
|
|
PRIVATEHEADERS = \
|
|
|
|
ftglue.h \
|
|
|
|
harfbuzz-impl.h \
|
|
|
|
harfbuzz-gdef-private.h \
|
|
|
|
harfbuzz-gpos-private.h \
|
|
|
|
harfbuzz-gsub-private.h \
|
|
|
|
harfbuzz-open-private.h
|
|
|
|
|
|
|
|
libharfbuzz_1_la_SOURCES = \
|
|
|
|
$(SOURCES) \
|
|
|
|
$(PUBLICHEADERS) \
|
|
|
|
$(PRIVATEHEADERS)
|
|
|
|
|
|
|
|
libharfbuzz_1_la_LIBADD = \
|
2000-12-20 05:41:36 +01:00
|
|
|
$(FREETYPE_LIBS)
|
|
|
|
|
2006-03-31 14:28:09 +02:00
|
|
|
noinst_PROGRAMS = harfbuzz-dump
|
|
|
|
|
|
|
|
harfbuzz_dump_SOURCES = \
|
|
|
|
harfbuzz-dump-main.c
|
|
|
|
|
|
|
|
harfbuzz_dump_LDADD = \
|
|
|
|
libharfbuzz-1.la
|
|
|
|
|
2000-12-20 05:41:36 +01:00
|
|
|
EXTRA_DIST = \
|
2006-01-28 21:29:18 +01:00
|
|
|
README \
|
2006-03-31 14:28:09 +02:00
|
|
|
COPYING.FTL \
|
|
|
|
COPYING.GPL \
|
|
|
|
COPYING \
|
|
|
|
$(EXTRA_SOURCES)
|
2006-01-28 21:29:18 +01:00
|
|
|
|