aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/05/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2022-12-05 12:46:56 +0100
committerOscar Najera <hi@oscarnajera.com>2022-12-05 12:46:56 +0100
commit41ffa60a36284e087545bdcf413f7bb4b7c23369 (patch)
tree5862905569523b7ee415e46f1bb580623c980b5c /AoC2022/05/makefile
parent1a6dfdadc5cce9f9ed54046f51c2b6e57e61c2e7 (diff)
downloadscratch-41ffa60a36284e087545bdcf413f7bb4b7c23369.tar.gz
scratch-41ffa60a36284e087545bdcf413f7bb4b7c23369.tar.bz2
scratch-41ffa60a36284e087545bdcf413f7bb4b7c23369.zip
[AoC2022] Elisp 05-01
Diffstat (limited to 'AoC2022/05/makefile')
-rw-r--r--AoC2022/05/makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/AoC2022/05/makefile b/AoC2022/05/makefile
new file mode 100644
index 0000000..6516fa4
--- /dev/null
+++ b/AoC2022/05/makefile
@@ -0,0 +1,15 @@
+##
+# run solutions
+#
+# @file
+# @version 0.1
+
+
+
+# end
+
+run:
+ sbcl --load ~/.sbclrc --script solver.lisp
+ emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit
+ rustc solver.rs && ./solver
+ elixir solver.ex