Updated wumpus Makefile to match other example projects.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Tue, 31 Mar 2020 08:44:16 +0000 (01:44 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Tue, 31 Mar 2020 08:44:16 +0000 (01:44 -0700)
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