diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-04 07:53:14 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-04 07:53:14 -0500 |
commit | 2cca8704b7e72cfdb4136f0cca99141a6626d339 (patch) | |
tree | ce5aa03dbc2c9604c9fb077db2b250d5ad6798da | |
parent | 27db07190555817f2795dd71b4ce7c4eac15f4b7 (diff) |
[add] makefile [change] to build with quicklisp
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | build.lisp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..71edb98 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build: build.lisp + sbcl --eval '(ql:register-local-projects)' \ + --eval '(ql:quickload :oneliners.api)' \ + --load build.lisp @@ -1,4 +1,4 @@ -(asdf:load-system "oneliners.api") +;;(asdf:load-system "oneliners.api") (sb-ext:save-lisp-and-die "olwiki-server" :toplevel 'oneliners.api::run |