1## Process this file with automake to produce Makefile.in 2 3noinst_LTLIBRARIES = libhb-old.la 4 5MAINSOURCES = \ 6 harfbuzz-buffer.c \ 7 harfbuzz-stream.c \ 8 harfbuzz-gdef.c \ 9 harfbuzz-gpos.c \ 10 harfbuzz-gsub.c \ 11 harfbuzz-impl.c \ 12 harfbuzz-open.c \ 13 harfbuzz-shaper.cpp \ 14 harfbuzz-greek.c \ 15 harfbuzz-tibetan.c \ 16 harfbuzz-khmer.c \ 17 harfbuzz-indic.cpp \ 18 harfbuzz-hebrew.c \ 19 harfbuzz-arabic.c \ 20 harfbuzz-hangul.c \ 21 harfbuzz-myanmar.c 22 23PUBLICHEADERS = \ 24 harfbuzz.h \ 25 harfbuzz-buffer.h \ 26 harfbuzz-gdef.h \ 27 harfbuzz-gpos.h \ 28 harfbuzz-gsub.h \ 29 harfbuzz-open.h \ 30 harfbuzz-global.h \ 31 harfbuzz-external.h \ 32 harfbuzz-shaper.h \ 33 harfbuzz-stream.h 34 35PRIVATEHEADERS = \ 36 harfbuzz-impl.h \ 37 harfbuzz-buffer-private.h \ 38 harfbuzz-stream-private.h \ 39 harfbuzz-gdef-private.h \ 40 harfbuzz-gpos-private.h \ 41 harfbuzz-gsub-private.h \ 42 harfbuzz-open-private.h \ 43 harfbuzz-shaper-private.h 44 45libhb_old_la_SOURCES = \ 46 $(MAINSOURCES) \ 47 $(PUBLICHEADERS) \ 48 $(PRIVATEHEADERS) 49libhb_old_la_CPPFLAGS = \ 50 -I$(top_srcdir) \ 51 -I$(top_srcdir)/src \ 52 -I$(top_builddir)/src 53 54EXTRA_DIST = README COPYING 55 56-include $(top_srcdir)/git.mk 57