Minor change to example in function description for `deepdup`.
[vvhitespace] / examples / wump / Makefile
CommitLineData
dc920fb5
AT
1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# All rights reserved.
3
4include ../config.mk
5
6all: wump
7
8wump:
9 $(CPP) $(CPP_FLAGS) -o temp.pvvs wump_strings.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