diff options
Diffstat (limited to 'Build/source/texk/web2c/man/Makefile.in')
-rw-r--r-- | Build/source/texk/web2c/man/Makefile.in | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/man/Makefile.in b/Build/source/texk/web2c/man/Makefile.in new file mode 100644 index 00000000000..5b8d0d230e9 --- /dev/null +++ b/Build/source/texk/web2c/man/Makefile.in @@ -0,0 +1,80 @@ +# Makefile for web2c manual pages. +# +# You need to change the variables and the pathnames only if this +# Makefile is invoked on its own, instead of from `../Makefile'. + +version = @WEB2CVERSION@ + +SHELL = /bin/sh +top_srcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +kpse_include ../make/common.mk +kpse_include kpathsea.mk + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +DITROFF = ditroff +DITROFF = groff + +# These pathnames are used to customize the manual pages with local +# directory names. They should match the system directories so the +# documentation and the programs will be consistent. They are overridden +# by make from web2c/Makefile. +kpse_include ../make/paths.mk + +localmodes = modes + +# If you like, delete the man pages for programs you aren't installing. +# The programs are listed in alphabetical order. +# +manfiles= \ + amstex.1 \ + bibtex.1 \ + cweb.1 \ + dmp.1 \ + dvicopy.1 \ + dvitomp.1 \ + dvitype.1 \ + eplain.1 \ + etex.1 \ + gftodvi.1 \ + gftopk.1 \ + gftype.1 \ + latex.1 \ + makempx.1 \ + mf.1 \ + mft.1 \ + mpost.1 \ + mpto.1 \ + newer.1 \ + omega.1 \ + patgen.1 \ + pdfetex.1 \ + pdftex.1 \ + pktogf.1 \ + pktype.1 \ + pltotf.1 \ + pooltype.1 \ + tangle.1 \ + tex.1 \ + tftopl.1 \ + vftovp.1 \ + vptovf.1 \ + weave.1 + +default all: manfiles + +kpse_include ../make/man.mk + +install install-data: install-man + +Makefile: Makefile.in ../config.status + (cd ..; $(SHELL) config.status) + +kpse_include ../make/clean.mk + +# Prevent GNU make 3 from overflowing arg limit on system V. +.NOEXPORT: |