Skip to content

Commit

Permalink
Update Makefile not to load the user-home Quicklisp. (refs #1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Sep 30, 2023
1 parent d8537aa commit 8c5cd93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ 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
.qlot/bin/rove lem-tests.asd

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
Expand Down

0 comments on commit 8c5cd93

Please sign in to comment.