From 3303ff3ef537782c6a53acce77ccbb6721b52aef Mon Sep 17 00:00:00 2001 From: attilavs2 Date: Sun, 9 Mar 2025 21:59:12 +0100 Subject: [PATCH] Readme --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e29faf --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# fLisp + +## See spec.md for the actual language and bytecode docs + +## Building + +Pre-requisites: +- yacc +- lex +- A C99 compiler +- GNU Make + +### Unix +Running `make` twice should work on most Unix systems. +It produces an executable called `flisp.amd64` + +### Windows +To meet the previously mentionned pre-requisites, you need to use mingw. +I recommend installing w64devkit, then compiling Bison and Flex from source. +Run `make win`, twice.