diff options
author | Oscar Najera <hi@oscarnajera.com> | 2022-12-04 23:17:43 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2022-12-04 23:17:43 +0100 |
commit | 976fafe4bfee6b66218b0ce0f0481624c5fe2f02 (patch) | |
tree | 78f2eef95a80a4d654858d8b9a1c0ba611726f4e /AoC2022/04/makefile | |
parent | afe994a44396c3a8e5ad29ccc3d7f21e85fecd14 (diff) | |
download | scratch-976fafe4bfee6b66218b0ce0f0481624c5fe2f02.tar.gz scratch-976fafe4bfee6b66218b0ce0f0481624c5fe2f02.tar.bz2 scratch-976fafe4bfee6b66218b0ce0f0481624c5fe2f02.zip |
[AoC2022] Common Lisp 04-01
Diffstat (limited to 'AoC2022/04/makefile')
-rw-r--r-- | AoC2022/04/makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/AoC2022/04/makefile b/AoC2022/04/makefile new file mode 100644 index 0000000..ee6a716 --- /dev/null +++ b/AoC2022/04/makefile @@ -0,0 +1,14 @@ +## +# 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 && ./solver |