Commit 6ea25f2b authored by Dylan Trotter's avatar Dylan Trotter

Remove make watch functionality since it only works on linux.

parent 0be0a1f3
...@@ -76,12 +76,7 @@ run: $(RUNNER) ...@@ -76,12 +76,7 @@ run: $(RUNNER)
test: $(ACCEPT_PASS_FILES) $(COMPILER_PASS_FILES) $(COMPILER_EXPR_VISITOR_PASS_FILES) $(COMPILER_STMT_PASS_FILES) $(RUNTIME_PASS_FILE) $(STDLIB_PASS_FILES) test: $(ACCEPT_PASS_FILES) $(COMPILER_PASS_FILES) $(COMPILER_EXPR_VISITOR_PASS_FILES) $(COMPILER_STMT_PASS_FILES) $(RUNTIME_PASS_FILE) $(STDLIB_PASS_FILES)
# Run 'make test' whenever the the source code changes. .PHONY: all benchmarks clean cover lint run test
watch:
-@$(MAKE) test
@while inotifywait -q -e modify --exclude '^\./(build|\.git)/' --recursive .; do sleep 0.2; $(MAKE) test; done
.PHONY: all benchmarks clean cover lint run test watch
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# grumpc compiler # grumpc compiler
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment