Minor corrections to README for basic-user-interaction example.
[vvhitespace] / examples / print-number-from-stack / Makefile
CommitLineData
3625ff3a
AT
1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# All rights reserved.
3
4include ../config.mk
5
6all: printnum
7
8printnum:
9 $(CPP) $(CPP_FLAGS) -o temp.pvvs printnum.pvvs
10 $(VVS_COMPILER) -i temp.pvvs -o printnum.vvs
11 @rm -f temp.pvvs
12
13run: printnum
14 $(VVS_INTERPRETER) -i printnum.vvs
15
16clean:
17 @rm -f printnum.vvs temp.pvvs