added readmes
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Mon, 5 Sep 2022 03:28:58 +0000 (22:28 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Mon, 5 Sep 2022 03:28:58 +0000 (22:28 -0500)
build.sh
compiler/README.md [new file with mode: 0644]
runtime/README.md [new file with mode: 0644]

index 7b685b80e5f8e08d1f47aba0ca4fc4023f46cf80..87c89484f8cbc623d3d72bb0508e78b7251bc851 100755 (executable)
--- 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 (file)
index 0000000..4b16ec0
--- /dev/null
@@ -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 (file)
index 0000000..4c3e5ea
--- /dev/null
@@ -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
+
+