From: Aaron Taylor Date: Tue, 31 Mar 2020 08:44:16 +0000 (-0700) Subject: Updated wumpus Makefile to match other example projects. X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/commitdiff_plain/1e5085fe00bea0f85fa7195a997dae86ca02ade0 Updated wumpus Makefile to match other example projects. --- 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