blob: 4bd04c828a081cf64eec0e71d6501057f2c3c1cd (
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
|
$NetBSD: patch-aa,v 1.2 2000/12/13 23:51:35 jtb Exp $
--- Makefile.orig Mon Dec 16 04:50:45 1996
+++ Makefile
@@ -29,10 +29,10 @@
# Programs.
-EMACS = emacs
+#EMACS = xemacs
TEX = tex
TEXINDEX = texindex
-MAKEINFO = makeinfo
+MAKEINFO = makeinfo --no-validate
MAKE = make
ECHO = @echo
REMOVE = -rm -f
@@ -54,13 +54,10 @@
# to make the steps more explicit while the `make' is in progress.
all:
$(MAKE) compile
- $(MAKE) private
$(MAKE) info
- $(ECHO) "Calc is now installed."
install:
$(MAKE) compile
- $(MAKE) public
$(MAKE) info
$(ECHO) "Calc is now installed."
@@ -83,9 +80,9 @@
# Format the Calc manual for the Info system using makeinfo.
info: calc.info
calc.info: calc.texinfo
- -$(MAKEINFO) calc.texinfo
- $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial."
- $(MAKE) texinfo
+ $(MAKEINFO) calc.texinfo
+# $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial."
+# $(MAKE) texinfo
# Format the Calc manual for the Info system using texinfo.el.
|