| OLD | NEW |
| (Empty) |
| 1 ## Process this file with automake to produce Makefile.in | |
| 2 | |
| 3 noinst_LTLIBRARIES = libharfbuzz-1.la | |
| 4 | |
| 5 MAINSOURCES = \ | |
| 6 harfbuzz-buffer.c \ | |
| 7 harfbuzz-stream.c \ | |
| 8 harfbuzz-dump.c \ | |
| 9 harfbuzz-gdef.c \ | |
| 10 harfbuzz-gpos.c \ | |
| 11 harfbuzz-gsub.c \ | |
| 12 harfbuzz-impl.c \ | |
| 13 harfbuzz-open.c \ | |
| 14 harfbuzz-shaper.cpp \ | |
| 15 harfbuzz-greek.c \ | |
| 16 harfbuzz-tibetan.c \ | |
| 17 harfbuzz-khmer.c \ | |
| 18 harfbuzz-indic.cpp \ | |
| 19 harfbuzz-hebrew.c \ | |
| 20 harfbuzz-arabic.c \ | |
| 21 harfbuzz-hangul.c \ | |
| 22 harfbuzz-myanmar.c \ | |
| 23 harfbuzz-thai.c | |
| 24 | |
| 25 EXTRA_SOURCES = harfbuzz.c | |
| 26 | |
| 27 PUBLICHEADERS = \ | |
| 28 harfbuzz.h \ | |
| 29 harfbuzz-buffer.h \ | |
| 30 harfbuzz-dump.h \ | |
| 31 harfbuzz-gdef.h \ | |
| 32 harfbuzz-gpos.h \ | |
| 33 harfbuzz-gsub.h \ | |
| 34 harfbuzz-open.h \ | |
| 35 harfbuzz-global.h \ | |
| 36 harfbuzz-external.h \ | |
| 37 harfbuzz-shaper.h \ | |
| 38 harfbuzz-stream.h | |
| 39 | |
| 40 PRIVATEHEADERS = \ | |
| 41 harfbuzz-impl.h \ | |
| 42 harfbuzz-buffer-private.h \ | |
| 43 harfbuzz-stream-private.h \ | |
| 44 harfbuzz-gdef-private.h \ | |
| 45 harfbuzz-gpos-private.h \ | |
| 46 harfbuzz-gsub-private.h \ | |
| 47 harfbuzz-open-private.h \ | |
| 48 harfbuzz-shaper-private.h | |
| 49 | |
| 50 libharfbuzz_1_la_SOURCES = \ | |
| 51 $(MAINSOURCES) \ | |
| 52 $(PUBLICHEADERS) \ | |
| 53 $(PRIVATEHEADERS) | |
| 54 | |
| 55 #noinst_PROGRAMS = harfbuzz-dump | |
| 56 # | |
| 57 #harfbuzz_dump_SOURCES = \ | |
| 58 # harfbuzz-dump-main.c | |
| 59 # | |
| 60 #harfbuzz_dump_LDADD = \ | |
| 61 # libharfbuzz-1.la | |
| 62 | |
| 63 EXTRA_DIST = \ | |
| 64 README \ | |
| 65 COPYING.FTL \ | |
| 66 COPYING.GPL \ | |
| 67 COPYING \ | |
| 68 $(EXTRA_SOURCES) | |
| 69 | |
| OLD | NEW |