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
|
--- web2c/Makefile.in.orig Sat Apr 11 00:08:02 1998
+++ web2c/Makefile.in Mon Apr 27 19:21:09 1998
@@ -5,7 +5,7 @@
# install-fmts/install-bases/install-mems will install. plain.* is
# created automatically (as a link). See the Formats node in
# doc/web2c.texi for details on the fmts.
-@TEX@fmts = latex.fmt # amstex.fmt eplain.fmt texinfo.fmt
+#@TEX@fmts = latex.fmt # amstex.fmt eplain.fmt texinfo.fmt
@ETEX@efmts = elatex.efmt
@CTEX@cfmts = latex.efmt
@PTEX@pdffmts = pdflatex.fmt
@@ -110,10 +110,12 @@
@OMEGA@ovf2ovp = ovf2ovp
@OMEGA@ovp2ovf = ovp2ovf
@OMEGA@otangle = otangle
-programs = tie bibtex dvicopy dvitomp dvitype $(etex) gftodvi gftopk \
+programs1 = tie bibtex dvicopy dvitomp dvitype $(etex) gftodvi gftopk \
gftype mf mft mpost $(odvicopy) $(odvitype) $(ofm2opl) $(omega) \
$(opl2ofm) $(ovf2ovp) $(ovp2ovf) $(otangle) patgen $(pdftex) pktogf pktype \
-pltotf pooltype tangle $(tex) tftopl vftovp vptovf weave
+pooltype tangle $(tex) vftovp vptovf weave
+programs2 = pltotf tftopl
+programs = $(programs1) $(programs2)
mpware = mpware/dmp mpware/makempx mpware/mpto mpware/newer
mpware_sources = mpware/dmp.c mpware/makempx.in mpware/mpto.c mpware/newer.c
@@ -121,7 +123,7 @@
@OMEGA@otps_programs = otps/otp2ocp otps/outocp
#
-default all: programs formats manpages doc/web2c.info
+default all: programs manpages doc/web2c.info
programs: $(programs) $(mpware) $(otps_programs)
# Makefile fragments:
@@ -482,7 +484,7 @@
$(SHELL) $(top_srcdir)/../mkinstalldirs $(bindir) $(texpooldir) \
$(mfpooldir) $(mppooldir)
cd mpware && $(MAKE) $(install_makeargs) install-exec
- for p in $(programs); do $(INSTALL_LIBTOOL_PROG) $(bindir) $$p; done
+ for p in $(programs1); do $(INSTALL_LIBTOOL_PROG) $(bindir) $$p; done
@OMEGA@ cd otps && $(MAKE) $(install_makeargs) install-programs
# The links to {mf,mp,tex} for each format and for {ini,vir}{mf,mp,tex},
|