You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
LISP=sbcl |
|
|
|
run: |
|
$(LISP) --eval "(progn (ql:quickload :cl-bible) (cl-bible:start)" |
|
|
|
build: |
|
$(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:build)" |
|
|
|
install: build |
|
cp bible /usr/local/bin/ |
|
|
|
uninstall: |
|
rm /usr/local/bin/bible |
|
|
|
clean: |
|
rm bible |
|
|
|
all: build
|
|
|