1
0
mirror of synced 2026-02-27 01:19:42 +00:00

make init files

This commit is contained in:
Larry Masinter
2021-02-13 14:45:47 -08:00
parent 198ce09b0d
commit e2239ae6a5
3 changed files with 30 additions and 0 deletions

4
.gitignore vendored
View File

@@ -1,3 +1,7 @@
# loadup interim steps
tmp/*
loadups/init*
#compiled code -- leave in for now

16
scripts/loadup-init.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
export MEDLEYDIR=`pwd`
if [ ! -f run-medley ] ; then
echo run from MEDLEYDIR
exit 1
fi
export LOADUPDIR="$MEDLEYDIR"
mkdir -p "$MEDLEYDIR/tmp"
./run-medley -greet "$MEDLEYDIR"/sources/LOADUP-INIT.LISP -full
ls -l tmp loadups/init*

10
sources/LOADUP-INIT.LISP Normal file
View File

@@ -0,0 +1,10 @@
(* "make init files")
(CNDIR (MEDLEYDIR "tmp"))
(LOAD (MEDLEYDIR "sources" "MAKEINITGREET.LCOM"))
(PROGN (DRIBBLE "makeinit.dribble")
(BKSYSBUF " ")
(MAKEINITGREET)
(DRIBBLE)
(LOGOUT T))