sst/Makefile

14 lines
116 B
Makefile
Raw Permalink Normal View History

##
# sst
#
.PHONY: default
default:
sbcl --non-interactive --load build.lisp
.PHONY: clean
clean:
rm sst
# end