summaryrefslogtreecommitdiffstats
path: root/makesans
diff options
context:
space:
mode:
Diffstat (limited to 'makesans')
-rwxr-xr-xmakesans12
1 files changed, 0 insertions, 12 deletions
diff --git a/makesans b/makesans
deleted file mode 100755
index a33c8de..0000000
--- a/makesans
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/local/bin/sbcl --script
-
-; This script, makesans, uses sbcl to make sanssbcl, which can then
-; be copied to a Linux PC that doesn't have sbcl.
-
-(defun load-and-go ()
- (load "demostuff")
- (load "menu")
- (loop as n from 1 to 9 do (load (format nil "demo~d" n)))
- (menu))
-
-(save-lisp-and-die "sanssbcl" :executable t :toplevel #'load-and-go)