diff options
Diffstat (limited to 'AoC2023/makefile')
-rw-r--r-- | AoC2023/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AoC2023/makefile b/AoC2023/makefile index 318c409..d946484 100644 --- a/AoC2023/makefile +++ b/AoC2023/makefile @@ -5,14 +5,14 @@ # @version 0.1 clean: - find . -name solver | xargs rm -vf + find . -name '*.fasl' | 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 + cd ${PWD} && time sbcl --load ~/.sbclrc --load $< --eval '(time (fiveam:run-all-tests))' --non-interactive rust: ${PWD}/solver.rs cd ${PWD} && rustc solver.rs -o /tmp/solver && /tmp/solver |