From 8193fd33c3e84a02adb465a029ba271902deb43b Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Sat, 16 Dec 2023 17:34:59 +0100 Subject: day15 part 1 --- AoC2023/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'AoC2023/makefile') 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 -- cgit v1.2.3