X-Git-Url: http://git.subgeniuskitty.com/vvhitespace/.git/blobdiff_plain/6cb31a3ecea681051cfa36fde3f17b18f8eacfea..a805b721f73268be338edf99ed09f03ac842ef2e:/Makefile diff --git a/Makefile b/Makefile index 1412ac5..d07a47c 100644 --- a/Makefile +++ b/Makefile @@ -18,9 +18,17 @@ vvi: vvc: $(CC) $(CC_FLAGS) -o $@ vv_compiler.c -test: all - @echo "Starting test suite:" - @./vv_test.py - clean: @rm -f vvc vvc.core vvi vvi.core + +test: testvvi teststdlib + +testvvi: all + @cd tests; make test + +teststdlib: all + @cd stdlib_tests; make test + +testclean: + @cd tests; make clean + @cd stdlib_tests; make clean