X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/b15f1da5248ce55b83569252abea8059e26a6f8a..dc920fb56406647147a52dee6ad09e02fb16b638:/examples/wump/Makefile diff --git a/examples/wump/Makefile b/examples/wump/Makefile new file mode 100644 index 0000000..079f0a3 --- /dev/null +++ b/examples/wump/Makefile @@ -0,0 +1,17 @@ +# (c) 2019 Aaron Taylor +# All rights reserved. + +include ../config.mk + +all: wump + +wump: + $(CPP) $(CPP_FLAGS) -o temp.pvvs wump_strings.pvvs + $(VVS_COMPILER) -i temp.pvvs -o wump.vvs + @rm -f temp.pvvs + +run: wump + $(VVS_INTERPRETER) -i wump.vvs + +clean: + @rm -f wump.vvs temp.pvvs