blob: 5b8d0d230e9c05fb3800518d83196e3c7924f067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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:
|