X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/e3dfa9e4d24186cdb143ca6e05d54448049a564f..07331ceeb01f6045ddf02e0aba05752ef1ea8838:/examples/hunt-the-wumpus/Makefile diff --git a/examples/hunt-the-wumpus/Makefile b/examples/hunt-the-wumpus/Makefile new file mode 100644 index 0000000..1fec45e --- /dev/null +++ b/examples/hunt-the-wumpus/Makefile @@ -0,0 +1,17 @@ +# (c) 2019 Aaron Taylor +# See LICENSE.txt file for copyright and license details. + +include ../config.mk + +all: wump + +wump: + $(CPP) $(CPP_FLAGS) -o temp.pvvs wump.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