diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-17 21:41:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-17 21:41:51 +0000 |
commit | 487ca4806cc046076293cf6cc5fbba0db282bac7 (patch) | |
tree | 847b412ab5158dd7bdd7ed7e5a4cc3fbca94be32 /Build/source/texk/web2c/doc/Makefile.in | |
parent | a3d3111bfe26b8e5f5bc6049dfb2a4ca2edc7881 (diff) |
texk 1
git-svn-id: svn://tug.org/texlive/trunk@1485 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/doc/Makefile.in')
-rw-r--r-- | Build/source/texk/web2c/doc/Makefile.in | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/doc/Makefile.in b/Build/source/texk/web2c/doc/Makefile.in new file mode 100644 index 00000000000..3230ec6cf2b --- /dev/null +++ b/Build/source/texk/web2c/doc/Makefile.in @@ -0,0 +1,63 @@ +# Makefile for Web2c documentation. + +kpse_include ../make/paths.mk +kpse_include ../make/common.mk +kpse_include kpathsea.mk +kpse_include ../make/texi.mk + +info: web2c.info +dvi: web2c.dvi + +web2c.info: install.texi ref.txi +all: web2c.info web2c.dvi + +@MAINT@INSTALL: install.texi +@MAINT@ $(MAKEINFO) $(one_info) $(MAKEINFO_FLAGS) $< -o $@ +@MAINT@ $(SHELL) $(top_srcdir)/../add-info-toc $@ +@MAINT@doc: info INSTALL +@MAINT@ +@MAINT@ref.txi: ref.bbl +@MAINT@ sed -e 's/~/ /g' \ +@MAINT@ -e 's/\\[-`'\''"c^]//g' \ +@MAINT@ -e 's/\\emdash */---/g' \ +@MAINT@ -e 's/metapost/MetaPost/g' \ +@MAINT@ -e 's/\\MF/Metafont/g' \ +@MAINT@ -e 's/\\METAFONT/METAFONT/g' \ +@MAINT@ -e 's/\\TUB/TUGboat/g' \ +@MAINT@ -e 's/\\LaTeX/La@TeX/g' \ +@MAINT@ -e 's/\\AMSTEX/AMS@TeX/g' \ +@MAINT@ -e 's/\\AmSTeX/AMS@TeX/g' \ +@MAINT@ -e 's/\\TeX/@TeX/g' \ +@MAINT@ -e 's/\\noopsort{[^}]*}//g' \ +@MAINT@ -e 's/[{}\]//g' \ +@MAINT@ -e 's/@\[/{/g' \ +@MAINT@ -e 's/@\]/}/g' \ +@MAINT@ -e 's/@TeX/@TeX{}/g' \ +@MAINT@ $< >$@ +@MAINT@ +@MAINT@ref.bbl: ref.aux texinfo.bst +@MAINT@ -bibtex ref +@MAINT@ +@MAINT@ref.aux: ref.tex +@MAINT@ rm -f ref.bbl +@MAINT@ tex '\nonstopmode \input ref' + +Makefile: Makefile.in ../config.status + cd .. && $(SHELL) config.status + +install: install-exec install-data +install-exec: +install-data: web2c.info + $(SHELL) $(top_srcdir)/../mkinstalldirs $(infodir) + test -r ./web2c.info || cd $(srcdir) && for i in web2c.i*; do \ + $(INSTALL_DATA) $$i $(infodir)/$$i; done + $(POST_INSTALL) + if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ + install-info --info-dir=$(infodir) $(infodir)/web2c.info; \ + else true; fi + +check: all + +#html: texi2html -expandinfo -number -menu -split_chapter + +kpse_include ../make/clean.mk |