From 1c147396427dbd05abadb4c1bbf9a60bb49770ec Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Sun, 3 Dec 2023 18:11:24 +0100 Subject: [AoC2023] day01 lisp fail 2nd --- AoC2023/makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 AoC2023/makefile (limited to 'AoC2023/makefile') diff --git a/AoC2023/makefile b/AoC2023/makefile new file mode 100644 index 0000000..318c409 --- /dev/null +++ b/AoC2023/makefile @@ -0,0 +1,25 @@ +## +# Project Title +# +# @file +# @version 0.1 + +clean: + find . -name solver | xargs rm -vf + + +emacs: ${PWD}/solver.el + cd ${PWD} && emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit + +lisp: ${PWD}/solver.lisp + cd ${PWD} && time sbcl --load ~/.sbclrc --load solver.lisp --eval '(fiveam:run-all-tests)' --non-interactive + +rust: ${PWD}/solver.rs + cd ${PWD} && rustc solver.rs -o /tmp/solver && /tmp/solver + +elixir: ${PWD}/solver.exs + cd ${PWD} && elixir solver.exs + +julia: ${PWD}/solver.jl + cd ${PWD} && julia solver.jl +# end -- cgit v1.2.3