SOF/Makefile
FroggyGreen 207de345f7 Window events, math, and asdf
Window resize events are now sent from the renderer to lisp.
On the lisp side, some math code has been written, but not yet
integrated into the project.
2024-05-13 19:05:28 -05:00

15 lines
292 B
Makefile

# dependencies: Steel Bank Common Lisp (SBCL)
PROJECT_DIR := $(PWD)
all: sof
sof:
rm -rf bin
mkdir -p bin
sbcl --load "$(PROJECT_DIR)/sof.asd" \
--eval "(asdf:load-system :sof)" \
--eval "(sb-ext:save-lisp-and-die \"bin/sof\" :toplevel 'sof-game:main :executable t)"
.PHONY: all sof