Renamed the example to remove "tutorial" from the title.
[vvhitespace] / examples / wump / 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:
2da74194 9 $(CPP) $(CPP_FLAGS) -o temp.pvvs wump.pvvs
dc920fb5
AT
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