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