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

3 4
NULL =

5
INCLUDES = 					\
6
	-I $(srcdir)				\
B
Behdad Esfahbod 已提交
7 8
	$(FREETYPE_CFLAGS)			\
	$(GLIB_CFLAGS)
B
Behdad Esfahbod 已提交
9
CXX = gcc $(GCCOPTS) -g -fno-rtti -fno-exceptions -Wabi -Wpadded -Wcast-align
10

11 12
noinst_LTLIBRARIES = libharfbuzz-1.la

13
HBSOURCES =  \
14
	harfbuzz-buffer.c \
15 16 17 18 19 20 21 22 23 24 25 26 27
	hb-private.h \
	hb-ot-layout.cc \
	hb-ot-layout-common-private.h \
	hb-ot-layout-gdef-private.h \
	hb-ot-layout-gpos-private.h \
	hb-ot-layout-gsubgpos-private.h \
	hb-ot-layout-gsub-private.h \
	hb-ot-layout-open-private.h \
	hb-ot-layout-private.h \
	$(NULL)

HBHEADERS = \
	hb-common.h \
28
	harfbuzz-buffer.h \
29 30
	hb-ot-layout.h \
	$(NULL)
31

32 33
libharfbuzz_1_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
libharfbuzz_1_la_LIBADD = $(FREETYPE_LIBS)
34

35
noinst_PROGRAMS = main
36

37 38
main_SOURCES = main.cc
main_LDADD = $(GLIB_LIBS)
B
Behdad Esfahbod 已提交
39

40
EXTRA_DIST = README COPYING
B
Behdad Esfahbod 已提交
41 42

-include $(top_srcdir)/git.mk