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-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 harfbuzz-thai.c | |
23 | |
24 EXTRA_SOURCES = harfbuzz.c | |
25 | |
26 PUBLICHEADERS = \ | |
27 harfbuzz.h \ | |
28 harfbuzz-buffer.h \ | |
29 harfbuzz-dump.h \ | |
30 harfbuzz-gdef.h \ | |
31 harfbuzz-gpos.h \ | |
32 harfbuzz-gsub.h \ | |
33 harfbuzz-open.h \ | |
34 harfbuzz-global.h \ | |
35 harfbuzz-external.h \ | |
36 harfbuzz-shaper.h \ | |
37 harfbuzz-stream.h | |
38 | |
39 PRIVATEHEADERS = \ | |
40 harfbuzz-impl.h \ | |
41 harfbuzz-buffer-private.h \ | |
42 harfbuzz-stream-private.h \ | |
43 harfbuzz-gdef-private.h \ | |
44 harfbuzz-gpos-private.h \ | |
45 harfbuzz-gsub-private.h \ | |
46 harfbuzz-open-private.h \ | |
47 harfbuzz-shaper-private.h | |
48 | |
49 libharfbuzz_1_la_SOURCES = \ | |
50 $(MAINSOURCES) \ | |
51 $(PUBLICHEADERS) \ | |
52 $(PRIVATEHEADERS) | |
53 | |
54 #noinst_PROGRAMS = harfbuzz-dump | |
55 # | |
56 #harfbuzz_dump_SOURCES = \ | |
57 # harfbuzz-dump-main.c | |
58 # | |
59 #harfbuzz_dump_LDADD = \ | |
60 # libharfbuzz-1.la | |
61 | |
62 EXTRA_DIST = \ | |
63 README \ | |
64 COPYING.FTL \ | |
65 COPYING.GPL \ | |
66 COPYING \ | |
67 $(EXTRA_SOURCES) | |
68 | |
OLD | NEW |