Makefile.am 1.0 KB
Newer Older
1 2 3
## Process this file with automake to produce Makefile.in

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

6 7
noinst_LTLIBRARIES = libharfbuzz-1.la

8
MAINSOURCES =  \
9 10 11 12
	harfbuzz.c

# included from harfbuzz.c
INCLUDEDSOURCES = \
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
	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 = \
37
	$(MAINSOURCES) \
38 39 40 41
	$(PUBLICHEADERS) \
	$(PRIVATEHEADERS)

libharfbuzz_1_la_LIBADD = \
42 43
	$(FREETYPE_LIBS)

44 45
noinst_PROGRAMS = harfbuzz-dump

46
harfbuzz_dump_SOURCES =	\
47 48
	harfbuzz-dump.c \
	harfbuzz-dump.h \
49 50
	harfbuzz-dump-main.c

51 52
harfbuzz_dump_LDADD = \
	$(libharfbuzz_1_la_LIBADD) \
53 54
	libharfbuzz-1.la

55
EXTRA_DIST = 		\
B
Behdad Esfahbod 已提交
56
	README		\
57 58 59
	COPYING.FTL	\
	COPYING.GPL	\
	COPYING		\
60
	$(INCLUDED_SOURCES)