Updated wumpus Makefile to match other example projects.
[vvhitespace] / examples / hunt-the-wumpus / Makefile
index 1fec45e..d224fd8 100644 (file)
@@ -6,12 +6,12 @@ include ../config.mk
 all: wump
 
 wump:
 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
        @rm -f temp.pvvs
 
 run: wump
-       $(VVS_INTERPRETER) -i wump.vvs
+       @$(VVS_INTERPRETER) -i wump.vvs
 
 clean:
        @rm -f wump.vvs temp.pvvs
 
 clean:
        @rm -f wump.vvs temp.pvvs