mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
Update moscow_ml to version 1.43. This is a good version of ml if
you are limited in space. If you have no space limitations, I'd really recommend the new smlnj port instead.
This commit is contained in:
parent
d75e61d064
commit
555f6b44ac
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=12251
@ -1,9 +1,9 @@
|
||||
# New ports collection makefile for: moscow-ml
|
||||
# Version required: 1.4
|
||||
# Date created: 26 July 1996
|
||||
# Version required: 1.43
|
||||
# Date created: 2 August 1998
|
||||
# Whom: chuckr
|
||||
#
|
||||
# $Id: Makefile,v 1.7 1996/11/21 09:32:45 asami Exp $
|
||||
# $Id: Makefile,v 1.8 1997/12/02 04:46:09 asami Exp $
|
||||
#
|
||||
|
||||
DISTNAME= mos14src
|
||||
@ -15,23 +15,32 @@ MASTER_SITES= ftp://ftp.dina.kvl.dk/pub/mosml/ \
|
||||
|
||||
MAINTAINER= chuckr@freefall.FreeBSD.org
|
||||
|
||||
BROKEN= install
|
||||
ALL_TARGET= world
|
||||
#BROKEN= install
|
||||
ALL_TARGET= world MOSMLHOME=$(PREFIX)/moscow_ml
|
||||
INSTALL_TARGET= install MOSMLHOME=$(PREFIX)/moscow_ml
|
||||
WRKSRC= ${WRKDIR}/mosml/src
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/moscow_ml/doc
|
||||
${MKDIR} ${PREFIX}/moscow_ml/doc/mosmllib
|
||||
${MKDIR} ${PREFIX}/moscow_ml/examples
|
||||
for file in ${WRKDIR}/mosml/doc/*;do \
|
||||
${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc;done
|
||||
if [ -f $${file} ]; then\
|
||||
${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc;fi;done
|
||||
for file in ${WRKDIR}/mosml/doc/mosmllib/*;do \
|
||||
${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc/mosmllib;done
|
||||
(cd ${WRKDIR}/mosml/examples; \
|
||||
${INSTALL_DATA} README ${PREFIX}/moscow_ml/examples; \
|
||||
for sdirs in manual mls helpsigs calc pretty lexyacc;do \
|
||||
${MKDIR} ${PREFIX}/moscow_ml/examples/$${sdirs}; \
|
||||
for file in $${sdirs}/*;do \
|
||||
${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \
|
||||
if [ -f $${file} ]; then\
|
||||
${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; fi; \
|
||||
done; done;)
|
||||
.endif
|
||||
for file in $(PREFIX)/moscow_ml/bin/*;do \
|
||||
if [ -f $${file} ]; then\
|
||||
$(LN) -s $${file} $(PREFIX)/bin;fi;done
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (mos14src.tar.gz) = 89bf25e3fda429be019f13c841fd33a1
|
||||
MD5 (mos14src.tar.gz) = 3c046ef3f95c57d61cfe5e78092dfa80
|
||||
|
@ -1,57 +1,20 @@
|
||||
--- runtime/fail.c.orig Thu Jul 25 15:59:04 1996
|
||||
+++ runtime/fail.c Thu Jul 25 16:20:42 1996
|
||||
@@ -3,7 +3,7 @@
|
||||
#ifdef __MWERKS__
|
||||
#define MAXDOUBLE 1.7976931348623157081e+308
|
||||
#else
|
||||
-#include <values.h>
|
||||
+#include <float.h>
|
||||
#endif
|
||||
#include "alloc.h"
|
||||
#include "fail.h"
|
||||
@@ -18,7 +18,7 @@
|
||||
--- Makefile.inc.orig Tue Jul 28 21:49:22 1998
|
||||
+++ Makefile.inc Tue Jul 28 21:51:36 1998
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
volatile unsigned char float_exn = FAILURE_EXN;
|
||||
|
||||
-double maxdouble = MAXDOUBLE/2;
|
||||
+double maxdouble = DBL_MAX/2;
|
||||
|
||||
struct longjmp_buffer * external_raise;
|
||||
value exn_bucket;
|
||||
--- runtime/mosml.c.orig Mon Jul 22 23:22:22 1996
|
||||
+++ runtime/mosml.c Mon Jul 22 23:22:49 1996
|
||||
@@ -790,7 +790,7 @@
|
||||
|
||||
#ifndef HAS_STRERROR
|
||||
extern int sys_nerr;
|
||||
- extern char * sys_errlist [];
|
||||
+ extern __const char *__const sys_errlist [];
|
||||
extern char *realpath();
|
||||
char *mktemp();
|
||||
#endif
|
||||
--- Makefile.inc.orig Thu Jul 25 22:36:06 1996
|
||||
+++ Makefile.inc Thu Jul 25 19:32:38 1996
|
||||
@@ -2,10 +2,11 @@
|
||||
|
||||
# Edit MOSMLHOME, CPP and STRIP to suit your installation
|
||||
# Where to install stuff
|
||||
|
||||
-MOSMLHOME=${HOME}/mosml
|
||||
+MOSMLHOME=${PREFIX}/moscow_ml
|
||||
+#MOSMLHOME=${HOME}/mosml
|
||||
|
||||
# For Linux and other well-behaved systems, use:
|
||||
# To compile the runtime system camlrunm with support for
|
||||
# dynamically loadable libraries (DDLs), uncomment these:
|
||||
@@ -13,7 +13,7 @@
|
||||
# ADDCFLAGS=-rdynamic
|
||||
|
||||
# For Linux, use:
|
||||
-CPP=/lib/cpp -P -traditional -Dunix -Umsdos
|
||||
+#CPP=/lib/cpp -P -traditional -Dunix -Umsdos
|
||||
+CPP=/usr/bin/cpp -P -traditional
|
||||
STRIP=strip
|
||||
DYNLD=ld -shared
|
||||
|
||||
# For HP-UX, use instead:
|
||||
@@ -42,7 +43,7 @@
|
||||
# For cross-compiling to MS DOS (from Linux) (development only)
|
||||
# CPP=/lib/cpp -P -traditional -Uunix -Dmsdos
|
||||
|
||||
-CC=gcc
|
||||
+CC=cc
|
||||
|
||||
.SUFFIXES :
|
||||
.SUFFIXES : .sml .sig .ui .uo .mlp .lex .c .o
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
This is Moscow ML, a version of Standard ML:
|
||||
|
||||
The current version 1.40 of Moscow ML
|
||||
The current version 1.43 of Moscow ML
|
||||
* implements the Core language of Standard ML, as revised 1996
|
||||
* implements large parts of the new SML Basis Library
|
||||
* implements separate compilation and a limited version of the
|
||||
@ -11,4 +11,3 @@ The current version 1.40 of Moscow ML
|
||||
* includes several new libraries and a new type `char'
|
||||
|
||||
THE MOSCOW ML HOME PAGE is at http://www.dina.kvl.dk/~sestoft/mosml.html
|
||||
|
||||
|
@ -1,14 +1,25 @@
|
||||
moscow_ml/bin/camlrunm
|
||||
@exec /bin/ln -s %D/%F %D/bin
|
||||
@unexec /bin/rm %D/bin/camlrunm
|
||||
moscow_ml/bin/mosml
|
||||
@exec /bin/ln -s %D/%F %D/bin
|
||||
@unexec /bin/rm %D/bin/mosml
|
||||
moscow_ml/bin/mosmlc
|
||||
@exec /bin/ln -s %D/%F %D/bin
|
||||
@unexec /bin/rm %D/bin/mosmlc
|
||||
moscow_ml/bin/mosmlyac
|
||||
@exec /bin/ln -s %D/%F %D/bin
|
||||
@unexec /bin/rm %D/bin/mosmlyac
|
||||
moscow_ml/bin/mosmllex
|
||||
@exec /bin/ln -s %D/%F %D/bin
|
||||
@unexec /bin/rm %D/bin/mosmllex
|
||||
moscow_ml/lib/header
|
||||
moscow_ml/lib/README
|
||||
moscow_ml/lib/Array.ui
|
||||
moscow_ml/lib/Word8Array.ui
|
||||
moscow_ml/lib/Word8.ui
|
||||
moscow_ml/lib/Word.ui
|
||||
moscow_ml/lib/Weak.ui
|
||||
moscow_ml/lib/Vector.ui
|
||||
moscow_ml/lib/Timer.ui
|
||||
moscow_ml/lib/Time.ui
|
||||
@ -21,21 +32,25 @@ moscow_ml/lib/Strbase.ui
|
||||
moscow_ml/lib/Splaytree.ui
|
||||
moscow_ml/lib/Splayset.ui
|
||||
moscow_ml/lib/Splaymap.ui
|
||||
moscow_ml/lib/SML90.ui
|
||||
moscow_ml/lib/Real.ui
|
||||
moscow_ml/lib/Random.ui
|
||||
moscow_ml/lib/Process.ui
|
||||
moscow_ml/lib/Polyhash.ui
|
||||
moscow_ml/lib/Polygdbm.ui
|
||||
moscow_ml/lib/Path.ui
|
||||
moscow_ml/lib/Parsing.ui
|
||||
moscow_ml/lib/PP.ui
|
||||
moscow_ml/lib/Old.ui
|
||||
moscow_ml/lib/Option.ui
|
||||
moscow_ml/lib/Obj.ui
|
||||
moscow_ml/lib/OS.ui
|
||||
moscow_ml/lib/Nonstdio.ui
|
||||
moscow_ml/lib/NJ93.ui
|
||||
moscow_ml/lib/Mosmlcgi.ui
|
||||
moscow_ml/lib/Mosml.ui
|
||||
moscow_ml/lib/Misc.ui
|
||||
moscow_ml/lib/Math.ui
|
||||
moscow_ml/lib/Location.ui
|
||||
moscow_ml/lib/Listsort.ui
|
||||
moscow_ml/lib/ListPair.ui
|
||||
moscow_ml/lib/List.ui
|
||||
@ -44,12 +59,15 @@ moscow_ml/lib/Intset.ui
|
||||
moscow_ml/lib/Intmap.ui
|
||||
moscow_ml/lib/Int.ui
|
||||
moscow_ml/lib/Help.ui
|
||||
moscow_ml/lib/Gdbm.ui
|
||||
moscow_ml/lib/FileSys.ui
|
||||
moscow_ml/lib/Dynlib.ui
|
||||
moscow_ml/lib/Dynarray.ui
|
||||
moscow_ml/lib/Date.ui
|
||||
moscow_ml/lib/CommandLine.ui
|
||||
moscow_ml/lib/Char.ui
|
||||
moscow_ml/lib/CharVector.ui
|
||||
moscow_ml/lib/CharArray.ui
|
||||
moscow_ml/lib/Char.ui
|
||||
moscow_ml/lib/Byte.ui
|
||||
moscow_ml/lib/Bool.ui
|
||||
moscow_ml/lib/Binaryset.ui
|
||||
@ -63,6 +81,7 @@ moscow_ml/lib/Array.uo
|
||||
moscow_ml/lib/Word8Array.uo
|
||||
moscow_ml/lib/Word8.uo
|
||||
moscow_ml/lib/Word.uo
|
||||
moscow_ml/lib/Weak.uo
|
||||
moscow_ml/lib/Vector.uo
|
||||
moscow_ml/lib/Timer.uo
|
||||
moscow_ml/lib/Time.uo
|
||||
@ -75,21 +94,25 @@ moscow_ml/lib/Strbase.uo
|
||||
moscow_ml/lib/Splaytree.uo
|
||||
moscow_ml/lib/Splayset.uo
|
||||
moscow_ml/lib/Splaymap.uo
|
||||
moscow_ml/lib/SML90.uo
|
||||
moscow_ml/lib/Real.uo
|
||||
moscow_ml/lib/Random.uo
|
||||
moscow_ml/lib/Process.uo
|
||||
moscow_ml/lib/Polyhash.uo
|
||||
moscow_ml/lib/Polygdbm.uo
|
||||
moscow_ml/lib/Path.uo
|
||||
moscow_ml/lib/Parsing.uo
|
||||
moscow_ml/lib/PP.uo
|
||||
moscow_ml/lib/Old.uo
|
||||
moscow_ml/lib/Option.uo
|
||||
moscow_ml/lib/Obj.uo
|
||||
moscow_ml/lib/OS.uo
|
||||
moscow_ml/lib/Nonstdio.uo
|
||||
moscow_ml/lib/NJ93.uo
|
||||
moscow_ml/lib/Mosmlcgi.uo
|
||||
moscow_ml/lib/Mosml.uo
|
||||
moscow_ml/lib/Misc.uo
|
||||
moscow_ml/lib/Math.uo
|
||||
moscow_ml/lib/Location.uo
|
||||
moscow_ml/lib/Listsort.uo
|
||||
moscow_ml/lib/ListPair.uo
|
||||
moscow_ml/lib/List.uo
|
||||
@ -98,16 +121,18 @@ moscow_ml/lib/Intset.uo
|
||||
moscow_ml/lib/Intmap.uo
|
||||
moscow_ml/lib/Int.uo
|
||||
moscow_ml/lib/Help.uo
|
||||
moscow_ml/lib/Gdbm.uo
|
||||
moscow_ml/lib/FileSys.uo
|
||||
moscow_ml/lib/Dynlib.uo
|
||||
moscow_ml/lib/Dynarray.uo
|
||||
moscow_ml/lib/Date.uo
|
||||
moscow_ml/lib/CommandLine.uo
|
||||
moscow_ml/lib/CharVector.uo
|
||||
moscow_ml/lib/CharArray.uo
|
||||
moscow_ml/lib/Char.uo
|
||||
moscow_ml/lib/Byte.uo
|
||||
moscow_ml/lib/Bool.uo
|
||||
moscow_ml/lib/Binaryset.uo
|
||||
moscow_ml/lib/PP.sig
|
||||
moscow_ml/lib/Binarymap.uo
|
||||
moscow_ml/lib/BinIO.uo
|
||||
moscow_ml/lib/BasicIO.uo
|
||||
@ -118,6 +143,7 @@ moscow_ml/lib/Array.sig
|
||||
moscow_ml/lib/Word8Array.sig
|
||||
moscow_ml/lib/Word8.sig
|
||||
moscow_ml/lib/Word.sig
|
||||
moscow_ml/lib/Weak.sig
|
||||
moscow_ml/lib/Vector.sig
|
||||
moscow_ml/lib/Timer.sig
|
||||
moscow_ml/lib/Time.sig
|
||||
@ -130,18 +156,23 @@ moscow_ml/lib/Strbase.sig
|
||||
moscow_ml/lib/Splaytree.sig
|
||||
moscow_ml/lib/Splayset.sig
|
||||
moscow_ml/lib/Splaymap.sig
|
||||
moscow_ml/lib/SML90.sig
|
||||
moscow_ml/lib/Real.sig
|
||||
moscow_ml/lib/Old.sig
|
||||
moscow_ml/lib/Random.sig
|
||||
moscow_ml/lib/Process.sig
|
||||
moscow_ml/lib/Polyhash.sig
|
||||
moscow_ml/lib/Polygdbm.sig
|
||||
moscow_ml/lib/Path.sig
|
||||
moscow_ml/lib/Parsing.sig
|
||||
moscow_ml/lib/PP.sig
|
||||
moscow_ml/lib/Option.sig
|
||||
moscow_ml/lib/Nonstdio.sig
|
||||
moscow_ml/lib/NJ93.sig
|
||||
moscow_ml/lib/Mosmlcgi.sig
|
||||
moscow_ml/lib/Mosml.sig
|
||||
moscow_ml/lib/Misc.sig
|
||||
moscow_ml/lib/Math.sig
|
||||
moscow_ml/lib/Location.sig
|
||||
moscow_ml/lib/Listsort.sig
|
||||
moscow_ml/lib/ListPair.sig
|
||||
moscow_ml/lib/List.sig
|
||||
@ -150,9 +181,12 @@ moscow_ml/lib/Intset.sig
|
||||
moscow_ml/lib/Intmap.sig
|
||||
moscow_ml/lib/Int.sig
|
||||
moscow_ml/lib/Help.sig
|
||||
moscow_ml/lib/Gdbm.sig
|
||||
moscow_ml/lib/FileSys.sig
|
||||
moscow_ml/lib/Dynlib.sig
|
||||
moscow_ml/lib/Dynarray.sig
|
||||
moscow_ml/lib/Date.sig
|
||||
moscow_ml/lib/CommandLine.sig
|
||||
moscow_ml/lib/CharVector.sig
|
||||
moscow_ml/lib/CharArray.sig
|
||||
moscow_ml/lib/Char.sig
|
||||
@ -167,14 +201,81 @@ moscow_ml/lib/Array2.sig
|
||||
moscow_ml/lib/Word8Vector.sig
|
||||
moscow_ml/lib/General.sig
|
||||
moscow_ml/lib/Meta.sig
|
||||
moscow_ml/lib/OS.sig
|
||||
moscow_ml/lib/helpsigs.val
|
||||
moscow_ml/lib/mosmlcmp
|
||||
moscow_ml/lib/mosmllnk
|
||||
moscow_ml/lib/mosmltop
|
||||
moscow_ml/tools/mosmldep
|
||||
moscow_ml/tools/cutdeps
|
||||
moscow_ml/doc/mosmllib/Array.html
|
||||
moscow_ml/doc/mosmllib/Array2.html
|
||||
moscow_ml/doc/mosmllib/Arraysort.html
|
||||
moscow_ml/doc/mosmllib/BasicIO.html
|
||||
moscow_ml/doc/mosmllib/BinIO.html
|
||||
moscow_ml/doc/mosmllib/Binarymap.html
|
||||
moscow_ml/doc/mosmllib/Binaryset.html
|
||||
moscow_ml/doc/mosmllib/Bool.html
|
||||
moscow_ml/doc/mosmllib/Byte.html
|
||||
moscow_ml/doc/mosmllib/Char.html
|
||||
moscow_ml/doc/mosmllib/CharArray.html
|
||||
moscow_ml/doc/mosmllib/CharVector.html
|
||||
moscow_ml/doc/mosmllib/CommandLine.html
|
||||
moscow_ml/doc/mosmllib/Date.html
|
||||
moscow_ml/doc/mosmllib/Dynarray.html
|
||||
moscow_ml/doc/mosmllib/Dynlib.html
|
||||
moscow_ml/doc/mosmllib/FileSys.html
|
||||
moscow_ml/doc/mosmllib/Gdbm.html
|
||||
moscow_ml/doc/mosmllib/General.html
|
||||
moscow_ml/doc/mosmllib/Help.html
|
||||
moscow_ml/doc/mosmllib/Int.html
|
||||
moscow_ml/doc/mosmllib/Intmap.html
|
||||
moscow_ml/doc/mosmllib/Intset.html
|
||||
moscow_ml/doc/mosmllib/Lexing.html
|
||||
moscow_ml/doc/mosmllib/List.html
|
||||
moscow_ml/doc/mosmllib/ListPair.html
|
||||
moscow_ml/doc/mosmllib/Listsort.html
|
||||
moscow_ml/doc/mosmllib/Location.html
|
||||
moscow_ml/doc/mosmllib/Math.html
|
||||
moscow_ml/doc/mosmllib/Meta.html
|
||||
moscow_ml/doc/mosmllib/Mosml.html
|
||||
moscow_ml/doc/mosmllib/Mosmlcgi.html
|
||||
moscow_ml/doc/mosmllib/NJ93.html
|
||||
moscow_ml/doc/mosmllib/Nonstdio.html
|
||||
moscow_ml/doc/mosmllib/OS.html
|
||||
moscow_ml/doc/mosmllib/Option.html
|
||||
moscow_ml/doc/mosmllib/PP.html
|
||||
moscow_ml/doc/mosmllib/Parsing.html
|
||||
moscow_ml/doc/mosmllib/Path.html
|
||||
moscow_ml/doc/mosmllib/Polygdbm.html
|
||||
moscow_ml/doc/mosmllib/Polyhash.html
|
||||
moscow_ml/doc/mosmllib/Process.html
|
||||
moscow_ml/doc/mosmllib/Random.html
|
||||
moscow_ml/doc/mosmllib/Real.html
|
||||
moscow_ml/doc/mosmllib/SML90.html
|
||||
moscow_ml/doc/mosmllib/Splaymap.html
|
||||
moscow_ml/doc/mosmllib/Splayset.html
|
||||
moscow_ml/doc/mosmllib/Splaytree.html
|
||||
moscow_ml/doc/mosmllib/String.html
|
||||
moscow_ml/doc/mosmllib/StringCvt.html
|
||||
moscow_ml/doc/mosmllib/Substring.html
|
||||
moscow_ml/doc/mosmllib/Susp.html
|
||||
moscow_ml/doc/mosmllib/TextIO.html
|
||||
moscow_ml/doc/mosmllib/Time.html
|
||||
moscow_ml/doc/mosmllib/Timer.html
|
||||
moscow_ml/doc/mosmllib/Vector.html
|
||||
moscow_ml/doc/mosmllib/Weak.html
|
||||
moscow_ml/doc/mosmllib/Word.html
|
||||
moscow_ml/doc/mosmllib/Word8.html
|
||||
moscow_ml/doc/mosmllib/Word8Array.html
|
||||
moscow_ml/doc/mosmllib/Word8Vector.html
|
||||
moscow_ml/doc/mosmllib/idIndex.html
|
||||
moscow_ml/doc/mosmllib/index.html
|
||||
moscow_ml/doc/bugs
|
||||
moscow_ml/doc/manual.dvi
|
||||
moscow_ml/doc/mosmlref.dvi
|
||||
moscow_ml/doc/recomp
|
||||
moscow_ml/doc/releases.txt
|
||||
moscow_ml/examples/README
|
||||
moscow_ml/examples/manual/Evaluate.sig
|
||||
moscow_ml/examples/manual/Evaluate.sml
|
||||
@ -185,14 +286,22 @@ moscow_ml/examples/manual/Reduce.sml
|
||||
moscow_ml/examples/manual/load
|
||||
moscow_ml/examples/mls/Makefile
|
||||
moscow_ml/examples/mls/mls.sml
|
||||
moscow_ml/examples/helpsigs/Asynt.sml
|
||||
moscow_ml/examples/helpsigs/Database.sig
|
||||
moscow_ml/examples/helpsigs/Database.sml
|
||||
moscow_ml/examples/helpsigs/Hasht.sig
|
||||
moscow_ml/examples/helpsigs/Hasht.sml
|
||||
moscow_ml/examples/helpsigs/Htmlsigs.sig
|
||||
moscow_ml/examples/helpsigs/Htmlsigs.sml
|
||||
moscow_ml/examples/helpsigs/Lexer.lex
|
||||
moscow_ml/examples/helpsigs/Makefile
|
||||
moscow_ml/examples/helpsigs/Parser.grm
|
||||
moscow_ml/examples/helpsigs/Parser.output
|
||||
moscow_ml/examples/helpsigs/Parsspec.sml
|
||||
moscow_ml/examples/helpsigs/Printbase.sml
|
||||
moscow_ml/examples/helpsigs/README
|
||||
moscow_ml/examples/helpsigs/Stack.sig
|
||||
moscow_ml/examples/helpsigs/Stack.sml
|
||||
moscow_ml/examples/helpsigs/makebase.sml
|
||||
moscow_ml/examples/calc/Lexer.lex
|
||||
moscow_ml/examples/calc/Makefile
|
||||
@ -202,7 +311,21 @@ moscow_ml/examples/pretty/Makefile
|
||||
moscow_ml/examples/pretty/ppexpr.sml
|
||||
moscow_ml/examples/lexyacc/Data.sml
|
||||
moscow_ml/examples/lexyacc/Lexer.lex
|
||||
moscow_ml/examples/lexyacc/Lexer.sml
|
||||
moscow_ml/examples/lexyacc/Main.sml
|
||||
moscow_ml/examples/lexyacc/Makefile
|
||||
moscow_ml/examples/lexyacc/Parser.grm
|
||||
moscow_ml/examples/lexyacc/README
|
||||
moscow_ml/examples/lexyacc/load
|
||||
@dirrm moscow_ml/lib
|
||||
@dirrm moscow_ml/tools
|
||||
@dirrm moscow_ml/bin
|
||||
@dirrm moscow_ml/doc/mosmllib
|
||||
@dirrm moscow_ml/doc
|
||||
@dirrm moscow_ml/examples/manual
|
||||
@dirrm moscow_ml/examples/mls
|
||||
@dirrm moscow_ml/examples/helpsigs
|
||||
@dirrm moscow_ml/examples/calc
|
||||
@dirrm moscow_ml/examples/pretty
|
||||
@dirrm moscow_ml/examples/lexyacc
|
||||
@dirrm moscow_ml/examples
|
||||
@dirrm moscow_ml
|
||||
|
Loading…
Reference in New Issue
Block a user