aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-08-05 13:05:41 -0500
committerColin Okay <colin@cicadas.surf>2022-08-05 13:05:41 -0500
commit94f810da3657b2e53423ed98bc59adca4cf5b88a (patch)
tree3cbaa61c93ec7c536beff2ae6d1fade16dcff059
parent84aab5128d98600f5210de98e1e480ca8fddffd6 (diff)
[add] makefileclingon-refactor
-rw-r--r--Makefile10
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