aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/06/makefile
blob: 3ddfc1af9450adedebc211aa7611cbcb87bfcce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 -o /tmp/solver && /tmp/solver
	elixir solver.exs