From c9f5ae2b9cc123b4be40837c6ac3b86be9b62957 Mon Sep 17 00:00:00 2001 From: Silas Vedder Date: Tue, 17 May 2022 20:29:44 +0200 Subject: [PATCH] Corrections in the Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dbbb082..3c150e4 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ LISP=sbcl run: - $(LISP) --eval "(progn (ql:quickload :cl-bible) (cl-bible:start)" + $(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:start)" build: $(LISP) --eval "(ql:quickload :cl-bible)" --eval "(cl-bible:build)" install: build - cp bible /usr/local/bin/ + sudo cp bible /usr/local/bin/ uninstall: rm /usr/local/bin/bible