diff options
Diffstat (limited to 'AoC2023/makefile')
-rw-r--r-- | AoC2023/makefile | 25 |
1 files changed, 25 insertions, 0 deletions
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 |