1
0
mirror of synced 2026-04-17 17:12:43 +00:00

fix bugs and start working on loadup changes

This commit is contained in:
Larry Masinter
2020-11-28 10:54:11 -08:00
parent fc7eeaeb6e
commit a25d98081a
7 changed files with 52 additions and 34 deletions

14
makesysout/loadup-full.sh Normal file
View File

@@ -0,0 +1,14 @@
/bin/sh
export MEDLEYDIR=`pwd`
if [ ! -f run-medley ] ; then
echo must run from MEDLEYDIR ;
exit 1 ;
fi
export LOADUPDIR=$MEDLEYDIR
./run-medley -greet $MEDLEYDIR/makesysout/makefullsysout.lcom $MEDLEYDIR/loadups/xlisp.sysout

12
makesysout/loadup-lisp.sh Normal file
View File

@@ -0,0 +1,12 @@
/bin/sh
export MEDLEYDIR=`pwd`
if [! -e run-medley ] ; then
echo run from MEDLEYDIR
exit 1
fi
export LOADUPDIR=$MEDLEYDIR
$ ./run-medley -greet $MEDLEYDIR/makesysout/synclispfiles.lcom $MEDLEYDIR/loadups/lisp.venuesysout

File diff suppressed because one or more lines are too long

Binary file not shown.