Moved some orphaned text from large rewrite of stdlib README that occured earlier.
[vvhitespace] / examples / random-heap-dump / Makefile
CommitLineData
d63de3fa
AT
1# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# All rights reserved.
3
4include ../config.mk
5
6all: randomheap
7
8randomheap:
9 $(CPP) $(CPP_FLAGS) -o temp.pvvs randomheap.pvvs
10 $(VVS_COMPILER) -i temp.pvvs -o randomheap.vvs
11 @rm -f temp.pvvs
12
13run: randomheap
14 $(VVS_INTERPRETER) -i randomheap.vvs
15
16clean:
17 @rm -f randomheap.vvs temp.pvvs