Makefile.am 956 字节
Newer Older
1 2 3
## Process this file with automake to produce Makefile.in

INCLUDES = 					\
B
Behdad Esfahbod 已提交
4
	$(FREETYPE_CFLAGS)
5

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
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 = \
42 43
	$(FREETYPE_LIBS)

44 45 46 47 48 49 50 51
noinst_PROGRAMS = harfbuzz-dump

harfbuzz_dump_SOURCES = 	\
	harfbuzz-dump-main.c

harfbuzz_dump_LDADD = 		\
	libharfbuzz-1.la

52
EXTRA_DIST = 		\
B
Behdad Esfahbod 已提交
53
	README		\
54 55 56 57
	COPYING.FTL	\
	COPYING.GPL	\
	COPYING		\
	$(EXTRA_SOURCES)
B
Behdad Esfahbod 已提交
58