FroggyGreen
207de345f7
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.
15 lines
292 B
Makefile
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
|