starting beepy

This commit is contained in:
2025-04-10 15:32:11 -07:00
commit fac3a22dfe
2 changed files with 141 additions and 0 deletions

13
build-binary.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
LISP=$1
NAME=$(basename "$1" .lisp)
shift
sbcl --load "$LISP" \
--eval "(sb-ext:save-lisp-and-die \"$NAME\"
:executable t
:save-runtime-options t
:toplevel '$NAME:toplevel)"