2009-08-11 05:35:05 +02:00
|
|
|
# Process this file with automake to produce Makefile.in
|
2000-12-20 05:41:36 +01:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
NULL =
|
|
|
|
|
2009-08-10 19:57:02 +02:00
|
|
|
# The following warning options are useful for debugging: -Wpadded -Wcast-align
|
2009-08-13 01:45:50 +02:00
|
|
|
#AM_CXXFLAGS =
|
2000-12-20 05:41:36 +01:00
|
|
|
|
2009-08-05 20:49:25 +02:00
|
|
|
noinst_LTLIBRARIES = libharfbuzz.la
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
HBSOURCES = \
|
2009-07-30 21:33:57 +02:00
|
|
|
hb-blob.c \
|
2009-05-20 11:42:12 +02:00
|
|
|
hb-buffer.c \
|
|
|
|
hb-buffer-private.h \
|
2009-08-03 02:06:48 +02:00
|
|
|
hb-font.cc \
|
2009-08-02 01:54:49 +02:00
|
|
|
hb-font-private.h \
|
2009-08-11 05:35:05 +02:00
|
|
|
hb-glib.h \
|
|
|
|
hb-glib.c \
|
2009-05-20 11:35:14 +02:00
|
|
|
hb-private.h \
|
2009-08-13 23:13:25 +02:00
|
|
|
hb-shape.h \
|
|
|
|
hb-shape.c \
|
2009-08-11 02:05:16 +02:00
|
|
|
hb-unicode.c \
|
|
|
|
hb-unicode.h \
|
|
|
|
hb-unicode-private.h \
|
2009-08-03 02:03:12 +02:00
|
|
|
hb-open-file-private.hh \
|
2009-08-05 04:06:57 +02:00
|
|
|
hb-open-type-private.hh \
|
2009-05-20 11:35:14 +02:00
|
|
|
hb-ot-layout.cc \
|
2009-08-03 02:03:12 +02:00
|
|
|
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 \
|
2009-05-20 11:35:14 +02:00
|
|
|
hb-ot-layout-private.h \
|
2009-08-02 02:29:22 +02:00
|
|
|
hb-object-private.h \
|
2009-05-20 11:35:14 +02:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
HBHEADERS = \
|
2009-08-02 21:35:31 +02:00
|
|
|
hb.h \
|
2009-07-30 21:33:57 +02:00
|
|
|
hb-blob.h \
|
2009-05-20 11:42:12 +02:00
|
|
|
hb-buffer.h \
|
2009-07-30 21:33:57 +02:00
|
|
|
hb-common.h \
|
2009-08-02 01:54:49 +02:00
|
|
|
hb-font.h \
|
2009-08-02 21:35:31 +02:00
|
|
|
hb-ot.h \
|
2009-05-20 11:35:14 +02:00
|
|
|
hb-ot-layout.h \
|
|
|
|
$(NULL)
|
2006-03-31 14:28:09 +02:00
|
|
|
|
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)
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
noinst_PROGRAMS = main
|
2006-03-31 14:28:09 +02:00
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
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
|
|
|
|
2009-05-20 11:35:14 +02:00
|
|
|
EXTRA_DIST = README COPYING
|
2009-04-17 23:03:39 +02:00
|
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|