X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/8fc485d739c55bf179379882747e5940071dca31..e5d2b9bf5614e1674ebe47db7b7f1076e85c1bd5:/examples/basic-user-interaction/Makefile diff --git a/examples/basic-user-interaction/Makefile b/examples/basic-user-interaction/Makefile new file mode 100644 index 0000000..94fca51 --- /dev/null +++ b/examples/basic-user-interaction/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