From 957e7671045953a5c52c7139bc794f7ed2a9bd96 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Sun, 4 Sep 2022 22:28:58 -0500 Subject: [PATCH] added readmes --- build.sh | 4 ++-- compiler/README.md | 5 +++++ runtime/README.md | 8 ++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 compiler/README.md create mode 100644 runtime/README.md diff --git a/build.sh b/build.sh index 7b685b80..87c89484 100755 --- a/build.sh +++ b/build.sh @@ -27,11 +27,11 @@ sudo mkdir -p "$CORE_DIR/tools" sudo cp ./scripts/onyx-pkg.onyx "$CORE_DIR/tools" cd compiler -./build.sh +./build.sh $1 cd .. cd runtime -./build.sh +./build.sh $1 cd .. # Otherwise the prompt ends on the same line diff --git a/compiler/README.md b/compiler/README.md new file mode 100644 index 00000000..4b16ec08 --- /dev/null +++ b/compiler/README.md @@ -0,0 +1,5 @@ +# Onyx Compiler + +This part of the repo provides the `onyx` compiler, as well +as the `onyx-run` binary. + diff --git a/runtime/README.md b/runtime/README.md new file mode 100644 index 00000000..4c3e5ea1 --- /dev/null +++ b/runtime/README.md @@ -0,0 +1,8 @@ +# Onyx Runtime + +This part of the repo is for the runtime library that Onyx uses for: +- Interacting with the file system +- Querying system statistics +- Much more + + -- 2.25.1