Updated wumpus Makefile to match other example projects.
[vvhitespace] / examples / hunt-the-wumpus / Makefile
# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
# See LICENSE.txt file for copyright and license details.
include ../config.mk
all: wump
wump:
@$(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
clean:
@rm -f wump.vvs temp.pvvs