mirror of
https://gitlab.com/vindarel/ciel.git
synced 2026-02-03 22:32:02 -08:00
10 lines
168 B
Makefile
10 lines
168 B
Makefile
LISP ?= sbcl
|
|
|
|
run:
|
|
$(LISP) --load ciel.asd \
|
|
--eval '(asdf:load-system :ciel)' \
|
|
--eval '(in-package:ciel-user)'
|
|
|
|
image:
|
|
$(LISP) --load build-image.lisp
|
|
|