harfbuzz/src/Makefile.am

71 lines
1.2 KiB
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
INCLUDES = \
-I $(srcdir) \
2009-11-02 20:35:51 +01:00
$(FREETYPE_CFLAGS) \
$(GLIB_CFLAGS)
2009-05-20 10:16:35 +02:00
CXX = gcc $(GCCOPTS) -g -fno-rtti -fno-exceptions -Wabi -Wpadded -Wcast-align
noinst_LTLIBRARIES = libharfbuzz-1.la
MAINSOURCES = \
2009-11-02 20:35:51 +01:00
$(INCLUDEDSOURCES) \
hb-ot-layout.cc
# harfbuzz.c
# included from harfbuzz.c
INCLUDEDSOURCES = \
harfbuzz-buffer.c \
harfbuzz-gpos.c \
harfbuzz-gsub.c \
harfbuzz-impl.c \
harfbuzz-open.c \
harfbuzz-stream.c
PUBLICHEADERS = \
harfbuzz.h \
harfbuzz-global.h \
harfbuzz-buffer.h \
harfbuzz-gpos.h \
harfbuzz-gsub.h \
harfbuzz-open.h
PRIVATEHEADERS = \
harfbuzz-impl.h \
harfbuzz-buffer-private.h \
harfbuzz-gpos-private.h \
harfbuzz-gsub-private.h \
harfbuzz-open-private.h \
harfbuzz-stream-private.h
libharfbuzz_1_la_SOURCES = \
$(MAINSOURCES) \
$(PUBLICHEADERS) \
$(PRIVATEHEADERS)
libharfbuzz_1_la_LIBADD = \
$(FREETYPE_LIBS)
2009-11-02 20:35:51 +01:00
noinst_PROGRAMS = harfbuzz-dump main
harfbuzz_dump_SOURCES = \
harfbuzz-dump.c \
harfbuzz-dump.h \
harfbuzz-dump-main.c
harfbuzz_dump_LDADD = \
$(libharfbuzz_1_la_LIBADD) \
libharfbuzz-1.la
main_SOURCES = \
main.cc
2009-11-02 20:35:51 +01:00
main_LDADD = \
$(GLIB_LIBS)
EXTRA_DIST = \
README \
COPYING \
2007-10-30 00:51:48 +01:00
$(INCLUDEDSOURCES)
2009-04-17 23:03:39 +02:00
-include $(top_srcdir)/git.mk