Added cl/khal-notify.lisp

This commit is contained in:
2023-09-28 22:28:06 -07:00
parent 8baf8d982d
commit fef6a2f54c
4 changed files with 200 additions and 0 deletions

14
cl/build-binary.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
if [ "$#" -lt 1 ]; then
echo "No input file!" 1>&2
exit 1
fi
bin_name="$(basename "$1" .lisp)"
sbcl --load "$1" \
--eval "(sb-ext:save-lisp-and-die \"$bin_name\"
:executable t
:save-runtime-options t
:toplevel '$bin_name:toplevel)"