aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2025-01-04 23:28:34 +0100
committerThomas Albers Raviola <thomas@thomaslabs.org>2025-01-05 17:11:20 +0100
commitbc69faaa5bbd8a2d8afb9ab81882b1ba21c4bb8e (patch)
tree6ad76e58bb58f1ac00dcf4ec2dff8d4239f3592e /Makefile
parent9412242d0aa9550860db364ddf715fd5c5855740 (diff)
Reorganize and add documentation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c439afb
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+TESTOPTS=--noinform --non-interactive --eval "(require 'asdf)"\
+ --eval "(setf sb-impl::*default-external-format* :utf-8)"\
+ --eval "(asdf:load-asd (merge-pathnames \"chains.asd\"))"\
+ --eval "(asdf:load-system :chains/interpreter)"\
+ --eval "(sb-ext:save-lisp-and-die \"chains\" :toplevel \#'chains :executable t)"
+
+all :
+ sbcl $(TESTOPTS)
+
+.PHONY : test
+test :
+ @sbcl $(TESTOPTS)