##// END OF EJS Templates
API call for FOR loop to make the main code less cluttered
API call for FOR loop to make the main code less cluttered

File last commit:

r6:a4c4f07f default
r19:c40f6d7d default
Show More
Makefile
25 lines | 384 B | text/x-makefile | MakefileLexer
BIN = sugar-qsp
LISP = sbcl
all: diagrams.png $(BIN)
$(BIN): src/*.lisp src/*.ps
buildapp.$(LISP) --asdf-path .\
--asdf-tree .qlot/dists\
--load-system sugar-qsp\
--entry sugar-qsp:entry-point\
--output $(BIN)
install-deps:
sbcl --load install-deps.lisp
update-deps:
sbcl --load update-deps.lisp
diagrams.png: diagrams.dot
dot $< -T png -o $@
clean:
rm sugar-qsp