X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/00ec7afcb1111d36f334292f8575660af92d3432..e3dfa9e4d24186cdb143ca6e05d54448049a564f:/examples/hello_world/Makefile diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile new file mode 100644 index 0000000..94fca51 --- /dev/null +++ b/examples/hello_world/Makefile @@ -0,0 +1,17 @@ +# (c) 2019 Aaron Taylor +# See LICENSE.txt file for copyright and license details. + +include ../config.mk + +all: hello + +hello: + @$(CPP) $(CPP_FLAGS) -o temp.pvvs hello.pvvs + @$(VVS_COMPILER) -i temp.pvvs -o hello.vvs + @rm -f temp.pvvs + +run: hello + @$(VVS_INTERPRETER) -i hello.vvs + +clean: + @rm -f hello.vvs temp.pvvs