[HB] Add abstract font and face API
[framework/uifw/harfbuzz.git] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 NULL =
4
5 INCLUDES =                                      \
6         -I $(srcdir)                            \
7         $(FREETYPE_CFLAGS)                      \
8         $(GLIB_CFLAGS)
9 CXX = gcc -g -O2 -fno-rtti -fno-exceptions -Wabi -Wpadded -Wcast-align
10
11 noinst_LTLIBRARIES = libharfbuzz-1.la
12
13 HBSOURCES =  \
14         hb-blob.c \
15         hb-buffer.c \
16         hb-buffer-private.h \
17         hb-font.c \
18         hb-font-private.h \
19         hb-private.h \
20         hb-ot-layout.cc \
21         hb-ot-layout-common-private.h \
22         hb-ot-layout-gdef-private.h \
23         hb-ot-layout-gpos-private.h \
24         hb-ot-layout-gsubgpos-private.h \
25         hb-ot-layout-gsub-private.h \
26         hb-ot-layout-open-private.h \
27         hb-ot-layout-private.h \
28         hb-refcount-private.h \
29         $(NULL)
30
31 HBHEADERS = \
32         hb-blob.h \
33         hb-buffer.h \
34         hb-common.h \
35         hb-font.h \
36         hb-ot-layout.h \
37         $(NULL)
38
39 libharfbuzz_1_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
40 libharfbuzz_1_la_LIBADD = $(FREETYPE_LIBS)
41
42 noinst_PROGRAMS = main
43
44 main_SOURCES = main.cc
45 main_LDADD = $(GLIB_LIBS)
46
47 EXTRA_DIST = README COPYING
48
49 -include $(top_srcdir)/git.mk