diff options
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5694970 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +LISP ?= sbcl + + +app: + ${LISP} --eval '(pushnew #P"." ql:*local-project-directories*)' \ + --eval '(ql:quickload :oneliners.cli/app)' \ + --eval '(asdf:make :oneliners.cli/app)' \ + --eval '(quit)' + +.PHONY: app |