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
	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 \
31
	harfbuzz-buffer-private.h \
32 33 34 35 36 37
	harfbuzz-gdef-private.h \
	harfbuzz-gpos-private.h \
	harfbuzz-gsub-private.h \
	harfbuzz-open-private.h

libharfbuzz_1_la_SOURCES = \
38
	$(MAINSOURCES) \
39 40 41 42
	$(PUBLICHEADERS) \
	$(PRIVATEHEADERS)

libharfbuzz_1_la_LIBADD = \
43 44
	$(FREETYPE_LIBS)

45 46
noinst_PROGRAMS = harfbuzz-dump

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

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

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