summaryrefslogtreecommitdiffstats
path: root/makesans
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-02-06 16:50:30 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-02-06 17:00:51 -0800
commit94ee69847a8e233b998ddd8c743087a063d27a44 (patch)
tree1a9fee291911a33e407d40e74975d88870b73962 /makesans
parent4667b03c44081463141dcdaeb3e748c0a24fcfa6 (diff)
downloadgtk-demos-94ee69847a8e233b998ddd8c743087a063d27a44.tar.gz
gtk-demos-94ee69847a8e233b998ddd8c743087a063d27a44.tar.bz2
gtk-demos-94ee69847a8e233b998ddd8c743087a063d27a44.zip
More TXR porting: add suffixes to files; remove SBCL materials.
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)