| ## Process this file with automake to produce Makefile.in |
| |
| NULL = |
| |
| INCLUDES = \ |
| -I $(srcdir) \ |
| $(FREETYPE_CFLAGS) \ |
| $(GLIB_CFLAGS) |
| CXX = gcc -g -O2 -fno-rtti -fno-exceptions -Wabi -Wpadded -Wcast-align |
| |
| noinst_LTLIBRARIES = libharfbuzz-1.la |
| |
| HBSOURCES = \ |
| hb-blob.c \ |
| hb-buffer.c \ |
| hb-buffer-private.h \ |
| hb-private.h \ |
| hb-ot-layout.cc \ |
| hb-ot-layout-common-private.h \ |
| hb-ot-layout-gdef-private.h \ |
| hb-ot-layout-gpos-private.h \ |
| hb-ot-layout-gsubgpos-private.h \ |
| hb-ot-layout-gsub-private.h \ |
| hb-ot-layout-open-private.h \ |
| hb-ot-layout-private.h \ |
| hb-refcount-private.h \ |
| $(NULL) |
| |
| HBHEADERS = \ |
| hb-blob.h \ |
| hb-buffer.h \ |
| hb-common.h \ |
| hb-ot-layout.h \ |
| $(NULL) |
| |
| libharfbuzz_1_la_SOURCES = $(HBSOURCES) $(HBHEADERS) |
| libharfbuzz_1_la_LIBADD = $(FREETYPE_LIBS) |
| |
| noinst_PROGRAMS = main |
| |
| main_SOURCES = main.cc |
| main_LDADD = $(GLIB_LIBS) |
| |
| EXTRA_DIST = README COPYING |
| |
| -include $(top_srcdir)/git.mk |