Browse Source

Corrections in the Makefile.

master
Silas Vedder 2 years ago
parent
commit
c9f5ae2b9c
  1. 4
      Makefile

4
Makefile

@ -1,13 +1,13 @@
LISP=sbcl LISP=sbcl
run: run:
$(LISP) --eval "(progn (ql:quickload :cl-bible) (cl-bible:start)" $(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:start)"
build: build:
$(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:build)" $(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:build)"
install: build install: build
cp bible /usr/local/bin/ sudo cp bible /usr/local/bin/
uninstall: uninstall:
rm /usr/local/bin/bible rm /usr/local/bin/bible

Loading…
Cancel
Save