diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | README | 11 |
3 files changed, 11 insertions, 10 deletions
@@ -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". @@ -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 @@ -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 |