X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/07331ceeb01f6045ddf02e0aba05752ef1ea8838..1e5085fe00bea0f85fa7195a997dae86ca02ade0:/examples/hunt-the-wumpus/Makefile diff --git a/examples/hunt-the-wumpus/Makefile b/examples/hunt-the-wumpus/Makefile index 1fec45e..d224fd8 100644 --- a/examples/hunt-the-wumpus/Makefile +++ b/examples/hunt-the-wumpus/Makefile @@ -6,12 +6,12 @@ include ../config.mk all: wump wump: - $(CPP) $(CPP_FLAGS) -o temp.pvvs wump.pvvs - $(VVS_COMPILER) -i temp.pvvs -o wump.vvs + @$(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 + @$(VVS_INTERPRETER) -i wump.vvs clean: @rm -f wump.vvs temp.pvvs