summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-07-18 23:04:22 -0400
committerKhaled Hosny <khaledhosny@eglug.org>2018-08-28 12:27:21 +0200
commit0b357c8429205571574735318a2b5bb08d632b7c (patch)
tree54561b7e93275c0a8d662becfb0d8a86e43a7f2f /utils
parentfac476c2bbf82732efa2ae8eb0d6037c719a6859 (diff)
downloadpango-0b357c8429205571574735318a2b5bb08d632b7c.tar.gz
Drop autotools
We will just use meson from now on.
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile.am115
1 files changed, 0 insertions, 115 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am
deleted file mode 100644
index 97c83413..00000000
--- a/utils/Makefile.am
+++ /dev/null
@@ -1,115 +0,0 @@
-## Process this file with automake to create Makefile.in.
-
-TEST_TEXTS = \
- test-arabic.txt \
- test-chinese.txt \
- test-devanagari.txt \
- test-feature-tag.markup \
- test-gurmukhi.txt \
- test-hebrew.txt \
- test-ipa.txt \
- test-justify.txt \
- test-lao.txt \
- test-latin.txt \
- test-long-paragraph.txt \
- test-mixed.markup \
- test-mixed.txt \
- test-mongolian.txt \
- test-nko.txt \
- test-opentype-language.markup \
- test-syriac.txt \
- test-tamil.txt \
- test-thai.txt \
- test-tibetan.txt \
- HELLO.txt \
- GLASS.txt
-
-EXTRA_DIST = \
- $(TEST_TEXTS)
-
-INCLUDES = \
- -I$(top_srcdir) \
- $(PANGO_DEBUG_FLAGS) \
- $(GLIB_CFLAGS) \
- $(XFT_CFLAGS) \
- $(CAIRO_CFLAGS) \
- $(FREETYPE_CFLAGS) \
- $(FONTCONFIG_CFLAGS) \
- $(X_CFLAGS)
-
-#########################################################
-
-bin_PROGRAMS = pango-view
-
-if HAVE_CAIRO
-bin_PROGRAMS += pango-list
-pango_list_SOURCES = pango-list.c
-pango_list_LDADD = \
- ../pango/libpangocairo-$(PANGO_API_VERSION).la \
- ../pango/libpango-$(PANGO_API_VERSION).la \
- $(GLIB_LIBS)
-endif
-
-
-pango_view_SOURCES = \
- viewer-render.h \
- viewer-render.c \
- viewer.h \
- viewer-main.c \
- pango-view.c
-pango_view_LDADD = \
- ../pango/libpango-$(PANGO_API_VERSION).la \
- $(GLIB_LIBS)
-if HAVE_FREETYPE
-pango_view_SOURCES += \
- viewer-pangoft2.c
-pango_view_LDADD += \
- ../pango/libpangoft2-$(PANGO_API_VERSION).la \
- $(FREETYPE_LIBS) \
- $(FONTCONFIG_LIBS)
-endif
-if HAVE_XFT
-pango_view_SOURCES += \
- viewer-pangoxft.c \
- viewer-x.h \
- viewer-x.c
-pango_view_LDADD += \
- ../pango/libpangoft2-$(PANGO_API_VERSION).la \
- ../pango/libpangoxft-$(PANGO_API_VERSION).la \
- $(XFT_LIBS)
-endif
-if HAVE_CAIRO
-pango_view_SOURCES += \
- viewer-cairo.h \
- viewer-cairo.c \
- viewer-pangocairo.c
-pango_view_LDADD += \
- ../pango/libpangocairo-$(PANGO_API_VERSION).la \
- $(CAIRO_LIBS)
-endif
-
-#########################################################
-
-MAINTAINERCLEANFILES = pango-view.1.in
-EXTRA_DIST += pango-view.1.in
-CLEANFILES = pango-view.1
-
-nodist_man_MANS = pango-view.1
-
-# The indirection through pango-view.1.in is to make parallel build work.
-# See bug 587768.
-$(srcdir)/pango-view.1.in: ../configure.ac $(pango_view_SOURCES)
- $(AM_V_GEN) $(top_srcdir)/missing --run \
- help2man --no-info --section=1 \
- --help-option="--help-all" --output="$@.tmp" \
- --name 'Pango text viewer' ./pango-view \
- && mv "$@.tmp" "$@" \
- || (echo Failed to update pango-view.1, the man page may be outdated >&2; \
- (test -f "$@" || echo help2man is required to generate this file. >> "$@"));
-pango-view.1: pango-view$(EXEEXT)
- $(AM_V_GEN) $(MAKE) $(AM_MAKEFLAGS) pango-view.1.in && \
- cp $(srcdir)/pango-view.1.in $@
-
-#########################################################
-
--include $(top_srcdir)/git.mk