Makefile.am 880 字节
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 15
	hb-buffer.c \
	hb-buffer-private.h \
16 17 18 19 20 21 22 23 24 25 26 27 28
	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 \
29
	hb-buffer.h \
30 31
	hb-ot-layout.h \
	$(NULL)
32

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

36
noinst_PROGRAMS = main
37

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

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

-include $(top_srcdir)/git.mk