12 lines
213 B
Makefile
12 lines
213 B
Makefile
|
# dependencies: Steel Bank Common Lisp (SBCL)
|
||
|
|
||
|
all: sof
|
||
|
|
||
|
sof:
|
||
|
rm -rf bin
|
||
|
mkdir -p bin
|
||
|
sbcl --load src/main.lisp \
|
||
|
--eval "(sb-ext:save-lisp-and-die \"bin/sof\" :toplevel 'main :executable t)"
|
||
|
|
||
|
.PHONY: all sof
|