From 1e5085fe00bea0f85fa7195a997dae86ca02ade0 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Tue, 31 Mar 2020 01:44:16 -0700 Subject: [PATCH] Updated wumpus Makefile to match other example projects. --- examples/hunt-the-wumpus/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.20.1