You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
295 B
Makefile
16 lines
295 B
Makefile
|
3 years ago
|
define LISP_CMDS
|
||
|
|
"(handler-case \
|
||
|
|
(progn (ql:quickload :seanut) \
|
||
|
|
(asdf:make :seanut)) \
|
||
|
|
(error (e) \
|
||
|
|
(format t \"~A~%\" e) \
|
||
|
|
(uiop:quit 1)))"
|
||
|
|
endef
|
||
|
|
|
||
|
|
.PHONY: clean all
|
||
|
|
|
||
|
|
all:
|
||
|
|
ros --eval $(LISP_CMDS)
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -ri bin/
|