From c3d51036009e68d97fcbf9069a4fa956a29c5b28 Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Mon, 12 Jul 2010 17:55:40 +0900 Subject: small code to check fonts which glyphs are missing comparing to a orth file in fontconfig --- missing-glyph-checker/src/Makefile.am | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 missing-glyph-checker/src/Makefile.am (limited to 'missing-glyph-checker/src/Makefile.am') diff --git a/missing-glyph-checker/src/Makefile.am b/missing-glyph-checker/src/Makefile.am new file mode 100644 index 0000000..4cc75c8 --- /dev/null +++ b/missing-glyph-checker/src/Makefile.am @@ -0,0 +1,29 @@ +NULL = +INCLUDES = \ + $(GLIB_CFLAGS) \ + $(FONTCONFIG_CFLAGS) \ + $(FREETYPE_CFLAGS) \ + $(NULL) +LIBS = \ + $(GLIB_LIBS) \ + $(FONTCONFIG_LIBS) \ + $(FREETYPE_LIBS) \ + $(NULL) +EXTRA_DIST = \ + $(NULL) + +DISTCLEANFILES = \ + $(NULL) + +## +# +bin_PROGRAMS = \ + mgc \ + $(NULL) +# +mgc_SOURCES = \ + main.c \ + $(NULL) +# +# +# -- cgit