X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/f4523a366b4cdb86a137ca9edcefde923263d126..31f53e886387b23ccaa5777bf4f4692da50c3e4d:/examples/hello-world/Makefile diff --git a/examples/hello-world/Makefile b/examples/hello-world/Makefile index c5bb796..94fca51 100644 --- a/examples/hello-world/Makefile +++ b/examples/hello-world/Makefile @@ -1,15 +1,17 @@ # (c) 2019 Aaron Taylor -# All rights reserved. +# See LICENSE.txt file for copyright and license details. include ../config.mk all: hello hello: - $(VVS_COMPILER) -i hello.pvvs -o hello.vvs + @$(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 + @$(VVS_INTERPRETER) -i hello.vvs clean: - @rm -f hello.vvs + @rm -f hello.vvs temp.pvvs