Added a 'Hello, World!" tutorial that links Whitespace example to VVhitespace+stdlib.
[vvhitespace] / examples / hello-stdlib / Makefile
CommitLineData
8bed3ccd
AT
1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# All rights reserved.
3
4include ../config.mk
5
6all: hello
7
8hello:
9 $(CPP) $(CPP_FLAGS) -o temp.pvvs hello.pvvs
10 $(VVS_COMPILER) -i temp.pvvs -o hello.vvs
11 @rm -f temp.pvvs
12
f4523a36 13run: hello
8bed3ccd
AT
14 $(VVS_INTERPRETER) -i hello.vvs
15
16clean:
17 @rm -f hello.vvs temp.pvvs