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.
|
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/
|