blob: 24c618037afb0feb0163c429eacd230b3b24727b (
plain) (
blame)
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
|
--- info/makefile.orig Sun May 6 02:18:49 2001
+++ info/makefile Tue Dec 4 01:00:35 2001
@@ -19,7 +19,7 @@
prefix=/usr/local
# where to place the info files
-INFO_DIR=/usr/local/info/
+INFO_DIR=${prefix}/info/
# where to put emacs lisp files.
EMACS_SITE_LISP=/usr/share/emacs/20.7/site-lisp
@@ -63,7 +63,7 @@
# Machine dependent makefile definitions for intel 386,486 running linux
-LBINDIR=/usr/local/bin
+LBINDIR=${prefix}/bin
OFLAG = -O
LIBS = -lm
@@ -115,8 +115,8 @@
.texi.info:
rm -f $*.*gz
- makeinfo $*.texi
- - gzip $*.info-*
+ makeinfo --no-split $*.texi
+# - gzip $*.info
GCL_SI= number.texi sequence.texi character.texi list.texi io.texi \
form.texi compile.texi symbol.texi system.texi structure.texi \
@@ -128,7 +128,7 @@
gcl-si.dvi: ${GCL_SI} gcl-si.texi
tex gcl-si.texi
-gcl-si.info:
+gcl-si.info: gcl-si.texi
makeinfo gcl-si.texi
gcl-tk.dvi: ${GCL_TK} gcl-tk.texi
@@ -147,13 +147,6 @@
cp *.html /d/www/gcl
install:
- if [ -d "${INFO_DIR}" ] ; then true ; else exit 0; fi
- -if fgrep gcl-si ${INFO_DIR}/dir > /dev/null ; then true ; else \
- echo "* GCL Doc: (gcl-si.info). GNU Common Lisp specific Documentation." >> ${INFO_DIR}/dir ; fi
- -if fgrep gcl-tk ${INFO_DIR}/dir > /dev/null ; then true ; else \
- echo "* GCL TK Doc: (gcl-tk.info). TK window GCL interface." >> ${INFO_DIR}/dir ; fi
- -if fgrep gcl.info ${INFO_DIR}/dir > /dev/null ; then true ; else \
- echo "* GCL Ansi Doc: (gcl.info). Ansi Common Lisp Specification." >> ${INFO_DIR}/dir ; fi
-if [ -d "${INFO_DIR}" ] ; then cp *.info* ${INFO_DIR} ; fi
|