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