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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
*** jtex-1.52/Makefile.in.orig Mon Jan 31 18:18:21 1994
--- jtex-1.52/Makefile.in Sat Jun 1 13:06:16 1996
***************
*** 8,20 ****
# match the system directories in the paths you defined in `site.h'.
prefix = /usr/local
bindir = $(prefix)/bin
! datadir = $(prefix)/lib
texdatadir = $(datadir)/tex
! texpooldir = $(texdatadir)
texinputdir = $(texdatadir)/macros
texfontdir = $(texdatadir)/fonts
! formatdir = $(texdatadir)/formats
mfdatadir=$(datadir)/mf
mfpooldir=$(mfdatadir)
--- 8,20 ----
# match the system directories in the paths you defined in `site.h'.
prefix = /usr/local
bindir = $(prefix)/bin
! datadir = $(prefix)/share
texdatadir = $(datadir)/tex
! texpooldir = $(texdatadir)/npool
texinputdir = $(texdatadir)/macros
texfontdir = $(texdatadir)/fonts
! formatdir = $(texdatadir)/nformats
mfdatadir=$(datadir)/mf
mfpooldir=$(mfdatadir)
***************
*** 30,36 ****
# `make bases' will try to make, and `make install-formats' and `make
# install-bases' will try to install. See README.W2C for a brief
# description of each of these formats.
! formats=jtex.fmt jlatex.fmt
# jslitex.fmt amsjtex.fmt amsjlatex.fmt jfoiltex.fmt
#formats=tex.fmt latex.fmt etex.fmt
# slitex.fmt amslatex.fmt amstex.fmt texinfo.fmt inrstex.fmt picplus.fmt
--- 30,36 ----
# `make bases' will try to make, and `make install-formats' and `make
# install-bases' will try to install. See README.W2C for a brief
# description of each of these formats.
! formats=njtex.fmt njlatex.fmt
# jslitex.fmt amsjtex.fmt amsjlatex.fmt jfoiltex.fmt
#formats=tex.fmt latex.fmt etex.fmt
# slitex.fmt amslatex.fmt amstex.fmt texinfo.fmt inrstex.fmt picplus.fmt
***************
*** 55,61 ****
# Compiling.
CC = @CC@
! coptimize = -O
# Some directories add more flags to this; hence this is not CFLAGS.
cflags = -I../$(srcdir)/lib $(coptimize) $(XCFLAGS)
--- 55,61 ----
# Compiling.
CC = @CC@
! coptimize = -O -m486
# Some directories add more flags to this; hence this is not CFLAGS.
cflags = -I../$(srcdir)/lib $(coptimize) $(XCFLAGS)
***************
*** 71,77 ****
RANLIB = @RANLIB@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
# How to make a link.
--- 71,77 ----
RANLIB = @RANLIB@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
INSTALL_DATA = @INSTALL_DATA@
# How to make a link.
***************
*** 133,139 ****
#
# The following targets build production versions.
! all: programs manpages bases formats
programs: stamp-tangle
for name in $(progdirs); \
--- 133,139 ----
#
# The following targets build production versions.
! all: programs formats #manpages bases
programs: stamp-tangle
for name in $(progdirs); \
***************
*** 208,214 ****
ln $(bindir)/virjtex $(bindir)/`basename $$f .fmt`; \
$(INSTALL_DATA) jtex/$$f $(formatdir)/$$f; \
done
! cd $(formatdir); rm -f jplain.fmt; ln jtex.fmt jplain.fmt
install-bases: stamp-bases
-if test -d $(basedir); then exit 0; else mkdir $(basedir); fi
--- 208,214 ----
ln $(bindir)/virjtex $(bindir)/`basename $$f .fmt`; \
$(INSTALL_DATA) jtex/$$f $(formatdir)/$$f; \
done
! cd $(formatdir); rm -f jplain.fmt; ln njtex.fmt jplain.fmt
install-bases: stamp-bases
-if test -d $(basedir); then exit 0; else mkdir $(basedir); fi
|