From 8c5cd933f34abe661cc2aee3363c7ac091837433 Mon Sep 17 00:00:00 2001 From: Eitaro Fukamachi Date: Sat, 30 Sep 2023 13:39:41 +0000 Subject: [PATCH] Update Makefile not to load the user-home Quicklisp. (refs #1117) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index db4a3f741..eae10f24c 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ LISP ?= ${shell which sbcl} ncurses: qlot install - $(LISP) --load .qlot/setup.lisp --load scripts/build-ncurses.lisp + $(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-ncurses.lisp sdl2: qlot install - $(LISP) --load .qlot/setup.lisp --load scripts/build-sdl2.lisp + $(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-sdl2.lisp test: qlot install @@ -14,7 +14,7 @@ test: doc: qlot install - $(LISP) --load .qlot/setup.lisp --load scripts/generate-documentation-tests.lisp --eval '(progn (lem-documentation-mode/tests::generate-markdown-file "test.md" :test) (quit))' + $(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/generate-documentation-tests.lisp --eval '(progn (lem-documentation-mode/tests::generate-markdown-file "test.md" :test) (quit))' update: git pull