Updated wumpus Makefile to match other example projects.
[vvhitespace] / examples / hunt-the-wumpus / Makefile
CommitLineData
dc920fb5 1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2da74194 2# See LICENSE.txt file for copyright and license details.
dc920fb5
AT
3
4include ../config.mk
5
6all: wump
7
8wump:
1e5085fe
AT
9 @$(CPP) $(CPP_FLAGS) -o temp.pvvs wump.pvvs
10 @$(VVS_COMPILER) -i temp.pvvs -o wump.vvs
dc920fb5
AT
11 @rm -f temp.pvvs
12
13run: wump
1e5085fe 14 @$(VVS_INTERPRETER) -i wump.vvs
dc920fb5
AT
15
16clean:
17 @rm -f wump.vvs temp.pvvs