Add initial hb-view tool
[framework/uifw/harfbuzz.git] / src / Makefile.am
index ca6dc4d..8e8319f 100644 (file)
@@ -1,6 +1,7 @@
 # Process this file with automake to produce Makefile.in
 
 NULL =
+EXTRA_DIST =
 
 # The following warning options are useful for debugging: -Wpadded -Wcast-align
 #AM_CXXFLAGS =
@@ -11,16 +12,19 @@ HBCFLAGS =
 HBLIBS =
 HBSOURCES =  \
        hb-blob.c \
-       hb-buffer.c \
-       hb-buffer-private.h \
+       hb-blob-private.h \
+       hb-buffer.cc \
+       hb-buffer-private.hh \
+       hb-common.c \
        hb-font.cc \
        hb-font-private.h \
        hb-object-private.h \
        hb-open-file-private.hh \
        hb-open-type-private.hh \
        hb-language.c \
+       hb-ot-head-private.hh \
        hb-private.h \
-       hb-shape.c \
+       hb-shape.cc \
        hb-unicode.c \
        hb-unicode-private.h \
        $(NULL)
@@ -42,12 +46,20 @@ HBSOURCES += \
        hb-ot-layout-gpos-private.hh \
        hb-ot-layout-gsubgpos-private.hh \
        hb-ot-layout-gsub-private.hh \
-       hb-ot-layout-private.h \
+       hb-ot-layout-private.hh \
+       hb-ot-map.cc \
+       hb-ot-map-private.hh \
+       hb-ot-shape.cc \
+       hb-ot-shape-complex-arabic.cc \
+       hb-ot-shape-complex-arabic-table.h \
+       hb-ot-shape-complex-private.hh \
+       hb-ot-shape-private.hh \
        hb-ot-tag.c \
        $(NULL)
 HBHEADERS += \
        hb-ot.h \
        hb-ot-layout.h \
+       hb-ot-shape.h \
        hb-ot-tag.h \
        $(NULL)
 
@@ -90,17 +102,47 @@ libharfbuzz_la_CPPFLAGS = $(HBCFLAGS)
 libharfbuzz_la_LIBADD = $(HBLIBS)
 pkginclude_HEADERS = $(HBHEADERS)
 
-noinst_PROGRAMS = main
+
+GENERATORS = \
+       gen-arabic-joining-table.py \
+       $(NULL)
+
+EXTRA_DIST += $(GENERATORS)
+
+noinst_PROGRAMS = main test
+bin_PROGRAMS =
+
+if HAVE_GLIB
+if HAVE_FREETYPE
+if HAVE_CAIRO_FT
+if HAVE_CAIRO_PNG
+hb_view_SOURCES = hb-view.c
+hb_view_CPPFLAGS = $(HBCFLAGS) $(CAIRO_FT_CFLAGS) $(CAIRO_PNG_CFLAGS)
+hb_view_LDADD = libharfbuzz.la $(HBLIBS) $(CAIRO_FT_LIBS) $(CAIRO_PNG_LIBS)
+bin_PROGRAMS += hb-view
+endif
+endif
+endif
+endif
 
 main_SOURCES = main.cc
 main_CPPFLAGS = $(HBCFLAGS)
 main_LDADD = libharfbuzz.la $(HBLIBS)
 
-TESTS =
+test_SOURCES = test.c
+test_CPPFLAGS = $(HBCFLAGS)
+test_LDADD = libharfbuzz.la $(HBLIBS)
+
+dist_check_SCRIPTS = \
+       check-c-linkage-decls.sh \
+       check-header-guards.sh \
+       check-internal-symbols.sh \
+       $(NULL)
 
 if HAVE_ICU
 else
-TESTS += check-libstdc++.sh
+dist_check_SCRIPTS += check-libstdc++.sh
 endif
 
+
 -include $(top_srcdir)/git.mk