harfbuzz/src/Makefile.am

55 lines
1.1 KiB
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
NULL =
# The following warning options are useful for debugging: -Wpadded -Wcast-align
AM_CXXFLAGS = -fno-rtti -fno-exceptions
2009-08-05 20:49:25 +02:00
noinst_LTLIBRARIES = libharfbuzz.la
HBSOURCES = \
2009-07-30 21:33:57 +02:00
hb-blob.c \
hb-buffer.c \
hb-buffer-private.h \
2009-08-03 02:06:48 +02:00
hb-font.cc \
hb-font-private.h \
hb-private.h \
2009-08-11 02:05:16 +02:00
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 \
2009-08-02 02:29:22 +02:00
hb-object-private.h \
$(NULL)
HBHEADERS = \
2009-08-02 21:35:31 +02:00
hb.h \
2009-07-30 21:33:57 +02:00
hb-blob.h \
hb-buffer.h \
2009-07-30 21:33:57 +02:00
hb-common.h \
hb-font.h \
2009-08-02 21:35:31 +02:00
hb-ot.h \
hb-ot-layout.h \
$(NULL)
2009-08-05 20:49:25 +02:00
libharfbuzz_la_SOURCES = $(HBSOURCES) $(HBHEADERS)
2009-08-06 18:32:35 +02:00
libharfbuzz_la_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
libharfbuzz_la_LIBADD = $(GLIB_LIBS)
noinst_PROGRAMS = main
main_SOURCES = main.cc
2009-08-06 18:32:35 +02:00
main_CPPFLAGS = -DHAVE_GLIB $(GLIB_CFLAGS)
2009-08-05 20:49:25 +02:00
main_LDADD = libharfbuzz.la $(GLIB_LIBS)
2009-11-02 20:35:51 +01:00
EXTRA_DIST = README COPYING
2009-04-17 23:03:39 +02:00
-include $(top_srcdir)/git.mk