Initial commit
This commit is contained in:
15
build.lisp
Normal file
15
build.lisp
Normal file
@ -0,0 +1,15 @@
|
||||
(ql:quickload '(:uiop :with-user-abort))
|
||||
|
||||
(load "truth-table.lisp")
|
||||
|
||||
#+sbcl
|
||||
(progn
|
||||
(sb-ext:disable-debugger)
|
||||
(sb-ext:save-lisp-and-die
|
||||
"truth-table"
|
||||
:toplevel 'truth-table:toplevel
|
||||
:save-runtime-options t
|
||||
:executable t))
|
||||
|
||||
#-sbcl
|
||||
(error "I only know how to build under SBCL")
|
Reference in New Issue
Block a user