mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-24 21:41:29 -08:00
13 lines
365 B
Makefile
13 lines
365 B
Makefile
all:lisp-envi.a hello-lisp-system--all-systems.fasb
|
|
|
|
#lisp environment.
|
|
lisp-envi.a: lisp-envi.asd lisp-envi.lisp build_static.lisp
|
|
ecl -load build_static.lisp
|
|
|
|
#your lisp system.
|
|
hello-lisp-system--all-systems.fasb: hello-lisp-system.asd hello-lisp.lisp \
|
|
build_fasl.lisp
|
|
ecl -load build_fasl.lisp
|
|
|
|
clean:
|
|
-rm -f hello-lisp-system--all-systems.fasb lisp-envi.a
|