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