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