diff options
author | Oscar Najera <hi@oscarnajera.com> | 2022-12-02 14:54:40 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2022-12-02 15:15:21 +0100 |
commit | ad4be3275a5fa46725292cfeee72fad6835159f4 (patch) | |
tree | 29f937f01e82850b66e080440642841f44dac61d /AoC2022/01/makefile | |
parent | c961041fb211c4e72f306a113ef2bb4b8385be1d (diff) | |
download | scratch-ad4be3275a5fa46725292cfeee72fad6835159f4.tar.gz scratch-ad4be3275a5fa46725292cfeee72fad6835159f4.tar.bz2 scratch-ad4be3275a5fa46725292cfeee72fad6835159f4.zip |
[AoC2022] Common lisp and makefile runner
Diffstat (limited to 'AoC2022/01/makefile')
-rw-r--r-- | AoC2022/01/makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/AoC2022/01/makefile b/AoC2022/01/makefile new file mode 100644 index 0000000..b885a31 --- /dev/null +++ b/AoC2022/01/makefile @@ -0,0 +1,13 @@ +## +# 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 |