X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/fc2c8ac7f0f21c0a93123424b1ef09cc53574b63..3625ff3a8ea0b61d744da30237e6ffc993a585fb:/examples/print-number-from-stack/Makefile diff --git a/examples/print-number-from-stack/Makefile b/examples/print-number-from-stack/Makefile new file mode 100644 index 0000000..de5bfc0 --- /dev/null +++ b/examples/print-number-from-stack/Makefile @@ -0,0 +1,17 @@ +# (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