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
|
|
|
|
|
2006-06-22 20:09:04 +02:00
|
|
|
MAINSOURCES = \
|
2007-10-11 09:45:26 +02:00
|
|
|
harfbuzz.c
|
|
|
|
|
|
|
|
# included from harfbuzz.c
|
|
|
|
INCLUDEDSOURCES = \
|
2006-03-31 14:28:09 +02:00
|
|
|
ftglue.c \
|
|
|
|
harfbuzz-buffer.c \
|
|
|
|
harfbuzz-gdef.c \
|
|
|
|
harfbuzz-gpos.c \
|
|
|
|
harfbuzz-gsub.c \
|
|
|
|
harfbuzz-open.c
|
|
|
|
|
|
|
|
PUBLICHEADERS = \
|
|
|
|
harfbuzz.h \
|
|
|
|
harfbuzz-buffer.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 = \
|
2006-06-22 20:09:04 +02:00
|
|
|
$(MAINSOURCES) \
|
2006-03-31 14:28:09 +02:00
|
|
|
$(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
|
|
|
|
|
2007-05-01 04:32:12 +02:00
|
|
|
harfbuzz_dump_SOURCES = \
|
2007-10-11 09:33:19 +02:00
|
|
|
harfbuzz-dump.c \
|
|
|
|
harfbuzz-dump.h \
|
2006-03-31 14:28:09 +02:00
|
|
|
harfbuzz-dump-main.c
|
|
|
|
|
2007-05-01 04:32:12 +02:00
|
|
|
harfbuzz_dump_LDADD = \
|
|
|
|
$(libharfbuzz_1_la_LIBADD) \
|
2006-03-31 14:28:09 +02:00
|
|
|
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 \
|
2007-10-11 09:45:26 +02:00
|
|
|
$(INCLUDED_SOURCES)
|