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