X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/212131401c74ff9b174690e7ceed51e6ff52ea88..6bc4be448bb1625c4542567ce6f910bc78dfdaaa:/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 index de5bfc0..0000000 --- a/examples/print-number-from-stack/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# (c) 2019 Aaron Taylor -# 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