diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-11-08 16:53:46 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-11-08 16:53:46 +0000 |
commit | 8b70788fa0333ae44b46195dd78f8614438443c9 (patch) | |
tree | 467400baaaeaf8b4ffffc650c4414c208ab11ac4 /Build/source/texk/ttfdump/Makefile.am | |
parent | 35d16fdfd460a826228374bc74b0d68c7923e112 (diff) |
ttfdump: Major update (see ChangeLog for details)
git-svn-id: svn://tug.org/texlive/trunk@24546 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/ttfdump/Makefile.am')
-rw-r--r-- | Build/source/texk/ttfdump/Makefile.am | 45 |
1 files changed, 26 insertions, 19 deletions
diff --git a/Build/source/texk/ttfdump/Makefile.am b/Build/source/texk/ttfdump/Makefile.am index bcc47f9aa97..e5d7547ca8a 100644 --- a/Build/source/texk/ttfdump/Makefile.am +++ b/Build/source/texk/ttfdump/Makefile.am @@ -5,27 +5,21 @@ ## ACLOCAL_AMFLAGS = -I ../../m4 -## We want to distribute the whole subdirectories. -## -## With current automake (1.10.2) 'make distcheck' fails when -## DISTFILES contains a directory and files in that directory. -EXTRA_DIST = docs include libttf src - -# in case of an SVN repository -dist-hook: - rm -rf `find $(distdir) -name .svn` - rm -f $(distdir)/libttf/Makefile.in - rm -f $(distdir)/src/Makefile.in - INCLUDES = -I$(top_srcdir)/include -AM_CPPFLAGS = -Dlint AM_CFLAGS = $(WARNING_CFLAGS) noinst_LIBRARIES = libttf.a -# libttf/interp.c is not used (would just produce compiler warnings). -# -nodist_libttf_a_SOURCES = \ +libttf_a_SOURCES = \ + include/gcache.h \ + include/gstate.h \ + include/loadtable.h \ + include/os2_P.h \ + include/protos.h \ + include/tables.h \ + include/ttc.h \ + include/ttf.h \ + include/ttfutil.h \ libttf/cmap.c \ libttf/cvt.c \ libttf/disasm.c \ @@ -48,7 +42,6 @@ nodist_libttf_a_SOURCES = \ libttf/pclt.c \ libttf/post.c \ libttf/prep.c \ - libttf/stack.c \ libttf/tabledir.c \ libttf/ttc.c \ libttf/ttfread.c \ @@ -57,13 +50,27 @@ nodist_libttf_a_SOURCES = \ libttf/vhea.c \ libttf/vmtx.c +## Not used (interp.c would just produce compiler warnings). +## +EXTRA_DIST = \ + libttf/fixed.c \ + libttf/interp.c \ + libttf/stack.c + bin_PROGRAMS = ttfdump -nodist_ttfdump_SOURCES = src/ttfdump.c +ttfdump_SOURCES = src/ttfdump.c LDADD = libttf.a -nodist_man1_MANS = docs/ttfdump.1 +dist_man1_MANS = docs/ttfdump.1 + +## Not used +## +EXTRA_DIST += \ + docs/ttfdump.dvi \ + docs/ttfdump.html \ + docs/ttfdump.ps ## Tests. ## |