Makefile support - clic - Clic is an command line interactive client for gopher… | |
git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 97b252acec2b3678492ada532072dfc17d3b5d38 | |
parent b77f936ba23da53d651ac18d9ecca7fee74a875b | |
Author: Solene Rapenne <[email protected]> | |
Date: Fri, 3 Nov 2017 14:14:20 +0000 | |
Makefile support | |
Diffstat: | |
A Makefile | 4 ++++ | |
M README.md | 13 ++++++++++--- | |
2 files changed, 14 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -0,0 +1,4 @@ | |
+all: bin | |
+ | |
+bin: | |
+ ecl -load make-binary.lisp | |
diff --git a/README.md b/README.md | |
@@ -12,14 +12,21 @@ or with ecl | |
ecl -load clic.lisp**. | |
-# Make a binary | |
+# Requirements | |
+ | |
+You need a Common LISP interpreter like ecl or sbcl to use Clic. | |
+ | |
+If you want to produce a binary, you need ecl and a C compiler. | |
-To create an binary you can load **make-binary.lisp** with ecl. | |
+# Make a binary | |
- ecl -load make-binary.lisp | |
+If you have ecl and a C compiler, just type `make` | |
You will get a binary named *clic*. | |
+The makefile is a wrapper that call **make-binary.lisp** with ecl. | |
+ | |
+ | |
I don't provide a way to generate a binary with sbcl because it | |
creates binaries larger than 10 Mb. | |