Misc cleanup. License headers and removing old examples.
[vvhitespace] / examples / random-heap-dump / Makefile
diff --git a/examples/random-heap-dump/Makefile b/examples/random-heap-dump/Makefile
deleted file mode 100644 (file)
index 9d0ab07..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
-# 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