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
	ftglue.c \
	harfbuzz-buffer.c \
	harfbuzz-gdef.c \
	harfbuzz-gpos.c \
	harfbuzz-gsub.c \
	harfbuzz-open.c

PUBLICHEADERS = \
	harfbuzz.h \
22
	harfbuzz-global.h \
23 24 25 26 27 28 29 30 31
	harfbuzz-buffer.h \
	harfbuzz-gdef.h \
	harfbuzz-gpos.h \
	harfbuzz-gsub.h \
	harfbuzz-open.h

PRIVATEHEADERS = \
	ftglue.h \
	harfbuzz-impl.h \
32
	harfbuzz-buffer-private.h \
33 34 35 36 37 38
	harfbuzz-gdef-private.h \
	harfbuzz-gpos-private.h \
	harfbuzz-gsub-private.h \
	harfbuzz-open-private.h

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

libharfbuzz_1_la_LIBADD = \
44 45
	$(FREETYPE_LIBS)

46 47
noinst_PROGRAMS = harfbuzz-dump

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

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

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