1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

makefile executable

This commit is contained in:
Natapat Samutpong 2022-03-13 12:49:00 +07:00
parent 87d96378f4
commit 41dbd22442
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
build-debug:
@echo "Building executable (debug)... done"
cargo build
cp ./target/debug/hazure ~/bin/hazure -r
@echo "Building executable (debug)... done"
build-lib: build-lib:
@echo "Building lib..." @echo "Building lib..."
cp ./lib/. /usr/include/hazure/ -r cp ./lib/. /usr/include/hazure/ -r

View file

@ -11,7 +11,7 @@ or with the pipe operator:
```sml ```sml
fun main: int = do fun main: int = do
"Hello, World!\n" "Hello, World!\n"
|> @write(); |> @write(_);
return 69; return 69;
end; end;
``` ```