Compare commits

...

3 Commits

Author SHA1 Message Date
5c73f19177 Update Makefile 2026-02-13 03:43:54 -08:00
def2caadd1 Update makefile 2026-02-13 03:29:51 -08:00
7bbbadaf3c Update build.lisp 2026-02-13 03:29:26 -08:00
2 changed files with 9 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ arguments.lisp
CLI_FILES=cli.lisp
WEB_FILES=web.lisp
all: cli
all: cli web
cli: truth-table
truth-table: build.lisp truth-table.asd $(BASE_FILES) $(CLI_FILES)
@@ -16,6 +16,6 @@ truth-table-web-server: build.lisp truth-table.asd $(BASE_FILES) $(WEB_FILES)
$(SBCL) --load build.lisp --eval '(web)'
clean:
rm -f truth-table
rm -f truth-table truth-table-web-server
.PHONY: all cli clean
.PHONY: all cli web clean

View File

@@ -9,6 +9,9 @@
(defun cli ()
"Build the CLI application executable."
(sb-ext:disable-debugger)
#+quicklisp
(ql:quickload :truth-table/cli)
#-quicklisp
(asdf:load-system :truth-table/cli)
(require :truth-table/cli)
(sb-ext:save-lisp-and-die
@@ -20,6 +23,9 @@
(defun web ()
"Build web CLI application executable."
(sb-ext:disable-debugger)
#+quicklisp
(ql:quickload :truth-table/web)
#-quicklisp
(asdf:load-system :truth-table/web)
(require :truth-table/web)
(sb-ext:save-lisp-and-die