9d69186e00346bf073e3cd9e26a3e007503288b0
[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-open-file-private.hh \
18         hb-open-type-private.hh \
19         hb-ot-layout.cc \
20         hb-ot-layout-common-private.hh \
21         hb-ot-layout-gdef-private.hh \
22         hb-ot-layout-gpos-private.hh \
23         hb-ot-layout-gsubgpos-private.hh \
24         hb-ot-layout-gsub-private.hh \
25         hb-ot-layout-private.h \
26         hb-object-private.h \
27         $(NULL)
28
29 HBHEADERS = \
30         hb.h \
31         hb-blob.h \
32         hb-buffer.h \
33         hb-common.h \
34         hb-font.h \
35         hb-ot.h \
36         hb-ot-layout.h \
37         $(NULL)
38
39 libharfbuzz_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
40 libharfbuzz_la_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
41 libharfbuzz_la_LIBADD = $(GLIB_LIBS)
42
43 noinst_PROGRAMS = main
44
45 main_SOURCES = main.cc
46 main_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
47 main_LDADD = libharfbuzz.la $(GLIB_LIBS)
48
49 EXTRA_DIST = README COPYING
50
51 -include $(top_srcdir)/git.mk