X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/2f6928ffa8acd02f8b388294a928a36d99ad5be0..249fb9ba4de5d1a7b562ce1d6c66d526f729cffb:/Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5ff4f11 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +# (c) 2019 Aaron Taylor +# All rights reserved. + +#################################################################################################### +# Configuration + +CC = cc +CC_FLAGS = -Wall -std=c99 + +#################################################################################################### +# Build + +all: vvc vvi + +vvi: + $(CC) $(CC_FLAGS) -o $@ vv_interpreter.c + +vvc: + $(CC) $(CC_FLAGS) -o $@ vv_compiler.c + +clean: + @rm -f vvc vvc.core vvi vvi.core