diff --git a/makefile b/makefile index 82f3b9a..fc16964 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,12 @@ .PHONY: watch +default: rewild.hl + rewild.hl: **/*.hx haxe compile.hxml +clean: + rm rewild.hl + watch: @inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make; done