diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-27 03:19:39 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-06-27 03:19:39 -0500 |
| commit | 5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0 (patch) | |
| tree | 32321069ed7dd49c567b53a13dfbb07e1e95f88b /build.sh | |
| parent | 9f7f0f925f9304ac46499caf0fef245083a78828 (diff) | |
| download | sloth-5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0.tar.gz | |
help
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,8 +1,11 @@ # Build Sloth cargo build - +FILENAME="$1" # Compile standard library -./target/debug/sloth std/stdio.sloth std/stdlib.sloth std/stdmath.sloth "$1" +./target/debug/sloth std/stdio.sloth std/stdlib.sloth std/stdmath.sloth $FILENAME # Generate binary -clang output.o std/stdio.c std/stdlib.c std/stdmath.c -o program +clang output.o std/stdio.c std/stdlib.c std/stdmath.c -o "${FILENAME%.sloth}" + +# Move file +mv "${FILENAME%.sloth}" . |
