[HB] Start adding Unicode funcs
[framework/uifw/harfbuzz.git] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 NULL =
4
5 # The following warning options are useful for debugging: -Wpadded -Wcast-align
6 AM_CXXFLAGS = -fno-rtti -fno-exceptions
7
8 noinst_LTLIBRARIES = libharfbuzz.la
9
10 HBSOURCES =  \
11         hb-blob.c \
12         hb-buffer.c \
13         hb-buffer-private.h \
14         hb-font.cc \
15         hb-font-private.h \
16         hb-private.h \
17         hb-unicode.c \
18         hb-unicode.h \
19         hb-unicode-private.h \
20         hb-open-file-private.hh \
21         hb-open-type-private.hh \
22         hb-ot-layout.cc \
23         hb-ot-layout-common-private.hh \
24         hb-ot-layout-gdef-private.hh \
25         hb-ot-layout-gpos-private.hh \
26         hb-ot-layout-gsubgpos-private.hh \
27         hb-ot-layout-gsub-private.hh \
28         hb-ot-layout-private.h \
29         hb-object-private.h \
30         $(NULL)
31
32 HBHEADERS = \
33         hb.h \
34         hb-blob.h \
35         hb-buffer.h \
36         hb-common.h \
37         hb-font.h \
38         hb-ot.h \
39         hb-ot-layout.h \
40         $(NULL)
41
42 libharfbuzz_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
43 libharfbuzz_la_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
44 libharfbuzz_la_LIBADD = $(GLIB_LIBS)
45
46 noinst_PROGRAMS = main
47
48 main_SOURCES = main.cc
49 main_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
50 main_LDADD = libharfbuzz.la $(GLIB_LIBS)
51
52 EXTRA_DIST = README COPYING
53
54 -include $(top_srcdir)/git.mk