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