summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-07-13 21:15:39 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-07-13 21:15:39 -0400
commit64d8a228f4407bddea8be60e4657f04a49b1c35a (patch)
tree78144d912482aa611b569566eb1a31b79b9c3eb2
parent867277f54303aa6a41413ab8fa8d226568bc1f4e (diff)
Update readme
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 1210fec..f9f976f 100644
--- a/README.md
+++ b/README.md
@@ -9,13 +9,13 @@ After that, work can begin on the real parser/compiler which will be written in
This project was originally supposed to form a go based compiler for the language, but in the interest of time, it seems more efficient to build an interpreter instead so we can work on the TNSL based compiler sooner.
-To build the parser:
+To build both for linux:
- ./gobuild.sh parse
+ ./gobuild.sh linux
-To build the interpreter:
+To build just one:
- ./gobuild.sh tint
+ ./gobuild.sh linux <tint / parse>
Binaries will be dumped in the "build" folder.