Update README, to detail the Makefile
This commit is contained in:
parent
91c85c4ba4
commit
084d948e43
16
README.md
16
README.md
|
@ -54,17 +54,19 @@ $ xxd castlevania.nes | grep -A4 "18e80"
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
Making a binary requires a Lisp (I recommend SBCL) and Quicklisp
|
Making a binary requires [an implementation](https://common-lisp.net/implementations) of Common Lisp installed: [Steel Bank Common Lisp](https://sbcl.org/) is our implementation-of-choice. It’s available on most operating systems under the package name `sbcl`.
|
||||||
(https://quicklisp.org).
|
|
||||||
|
You also need the library-manager [Quicklisp](https://quicklisp.org), which can [be installed](https://www.quicklisp.org/beta/#installation) quite easily, including via our [Makefile](Makefile).
|
||||||
|
|
||||||
|
To install quicklisp, build a binary, and install it, simply:
|
||||||
|
|
||||||
Put this repository into your `quicklisp/local-projects/`, then run, in your
|
|
||||||
lisp interpreter:
|
|
||||||
```
|
```
|
||||||
# (ql:quickload '(eksd eksd.unix))
|
$ make quicklisp
|
||||||
# (save-lisp-and-die "eksd" :toplevel #'eksd.unix:main :executable t)
|
$ make build
|
||||||
|
$ sudo cp eksd /usr/local/bin/eksd
|
||||||
```
|
```
|
||||||
|
|
||||||
And bam, you've made a binary. Cool.
|
Bam, you've made and installed a binary! Cool!
|
||||||
|
|
||||||
|
|
||||||
## Misc
|
## Misc
|
||||||
|
|
Ŝarĝante…
Reference in New Issue