X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/fec6668632e44bad7859dbc29e500d9a33422f6c..a41cabb1c4045ca719a2f28a947c3f90cafbe567:/examples/random-heap-dump/Makefile diff --git a/examples/random-heap-dump/Makefile b/examples/random-heap-dump/Makefile deleted file mode 100644 index 9d0ab07..0000000 --- a/examples/random-heap-dump/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# (c) 2019 Aaron Taylor -# All rights reserved. - -include ../config.mk - -all: randomheap - -randomheap: - $(CPP) $(CPP_FLAGS) -o temp.pvvs randomheap.pvvs - $(VVS_COMPILER) -i temp.pvvs -o randomheap.vvs - @rm -f temp.pvvs - -run: randomheap - $(VVS_INTERPRETER) -i randomheap.vvs - -clean: - @rm -f randomheap.vvs temp.pvvs