2000-12-20 05:41:36 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
INCLUDES = \
|
2007-10-30 00:51:48 +01:00
|
|
|
$(FREETYPE_CFLAGS) \
|
|
|
|
-I $(srcdir)
|
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
|
|
|
harfbuzz-buffer.c \
|
|
|
|
harfbuzz-gdef.c \
|
|
|
|
harfbuzz-gpos.c \
|
|
|
|
harfbuzz-gsub.c \
|
2007-10-25 02:23:46 +02:00
|
|
|
harfbuzz-impl.c \
|
2007-11-07 09:06:01 +01:00
|
|
|
harfbuzz-open.c \
|
|
|
|
harfbuzz-stream.c
|
2006-03-31 14:28:09 +02:00
|
|
|
|
|
|
|
PUBLICHEADERS = \
|
|
|
|
harfbuzz.h \
|
2007-10-25 00:44:47 +02:00
|
|
|
harfbuzz-global.h \
|
2006-03-31 14:28:09 +02:00
|
|
|
harfbuzz-buffer.h \
|
|
|
|
harfbuzz-gdef.h \
|
|
|
|
harfbuzz-gpos.h \
|
|
|
|
harfbuzz-gsub.h \
|
|
|
|
harfbuzz-open.h
|
|
|
|
|
|
|
|
PRIVATEHEADERS = \
|
|
|
|
harfbuzz-impl.h \
|
2007-10-11 10:30:50 +02:00
|
|
|
harfbuzz-buffer-private.h \
|
2006-03-31 14:28:09 +02:00
|
|
|
harfbuzz-gdef-private.h \
|
|
|
|
harfbuzz-gpos-private.h \
|
|
|
|
harfbuzz-gsub-private.h \
|
2007-11-07 09:06:01 +01:00
|
|
|
harfbuzz-open-private.h \
|
|
|
|
harfbuzz-stream-private.h
|
2006-03-31 14:28:09 +02:00
|
|
|
|
|
|
|
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 \
|
2007-10-30 00:51:48 +01:00
|
|
|
$(INCLUDEDSOURCES)
|