Removing old example of "print number from stack".
[vvhitespace] / examples / print-number-from-stack / Makefile
diff --git a/examples/print-number-from-stack/Makefile b/examples/print-number-from-stack/Makefile
deleted file mode 100644 (file)
index de5bfc0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
-# All rights reserved.
-
-include ../config.mk
-
-all: printnum
-
-printnum:
-       $(CPP) $(CPP_FLAGS) -o temp.pvvs printnum.pvvs
-       $(VVS_COMPILER) -i temp.pvvs -o printnum.vvs
-       @rm -f temp.pvvs
-
-run: printnum
-       $(VVS_INTERPRETER) -i printnum.vvs
-
-clean:
-       @rm -f printnum.vvs temp.pvvs