X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/07331ceeb01f6045ddf02e0aba05752ef1ea8838..31f53e886387b23ccaa5777bf4f4692da50c3e4d:/examples/hello_world/Makefile diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile deleted file mode 100644 index 94fca51..0000000 --- a/examples/hello_world/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# (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