summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL2
-rw-r--r--Makefile8
-rw-r--r--README11
3 files changed, 11 insertions, 10 deletions
diff --git a/INSTALL b/INSTALL
index 3e07400537..fe8cac3691 100644
--- a/INSTALL
+++ b/INSTALL
@@ -65,7 +65,7 @@ following commands (in the directory set to BINDIR in Makefile.config):
csllex the lexer generator
csltop the interactive, toplevel-based system
cslmktop a tool to make toplevel systems that integrate
- user-defined C primitives
+ user-defined C primitives and Caml code
csldep output "make" dependencies for Caml sources
From the top directory, become superuser and do "make install".
diff --git a/Makefile b/Makefile
index ec797bf6ec..afba58a2ee 100644
--- a/Makefile
+++ b/Makefile
@@ -117,7 +117,7 @@ coldstart:
# Save the current bootstrap compiler
backup:
- test -d boot/Saved || mkdir boot/Saved
+ if test -d boot/Saved; then : ; else mkdir boot/Saved; fi
mv boot/Saved boot/Saved.prev
mkdir boot/Saved
mv boot/Saved.prev boot/Saved/Saved.prev
@@ -160,9 +160,9 @@ opt: runtimeopt camlopt libraryopt
# Installation
install:
- test -d $(BINDIR) || mkdir $(BINDIR)
- test -d $(LIBDIR) || mkdir $(LIBDIR)
- test -d $(MANDIR) || mkdir $(MANDIR)
+ if test -d $(BINDIR); then : ; else mkdir $(BINDIR); fi
+ if test -d $(LIBDIR); then : ; else mkdir $(LIBDIR); fi
+ if test -d $(MANDIR); then : ; else mkdir $(MANDIR); fi
cd byterun; $(MAKE) install
cp camlc $(BINDIR)/cslc
cp camltop $(BINDIR)/csltop
diff --git a/README b/README
index 9e315b81e4..44734d89cc 100644
--- a/README
+++ b/README
@@ -1,4 +1,5 @@
-This is the first public release of the Caml Special Light system.
+This is Caml Special Light 1.06, the first public release of the Caml
+Special Light system.
OVERVIEW:
@@ -23,10 +24,10 @@ standalone programs, or as an interactive, toplevel-based system.
The other compiler generates high-performance native code for a number
of processors. Compilation takes longer and generates bigger code, but
the generated programs deliver excellent performance (our tests show
-that this compiler consistently outperforms Standard ML of New Jersey
-1.08), while retaining the moderate memory requirements of the
-bytecode compiler. The native-code compiler currently runs on the
-following platforms:
+that this compiler outperforms Standard ML of New Jersey 1.08), while
+retaining the moderate memory requirements of the bytecode
+compiler. The native-code compiler currently runs on the following
+platforms:
Alpha processors: DecStation 3000 under OSF1
Sparc processors: Sun Sparcstation under SunOS 4.1 or Solaris 2