make init files
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,3 +1,7 @@
|
||||
# loadup interim steps
|
||||
|
||||
tmp/*
|
||||
loadups/init*
|
||||
|
||||
#compiled code -- leave in for now
|
||||
|
||||
|
||||
16
scripts/loadup-init.sh
Executable file
16
scripts/loadup-init.sh
Executable 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
10
sources/LOADUP-INIT.LISP
Normal 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))
|
||||
Reference in New Issue
Block a user