glasshouse/makefile

8 lines
206 B
Makefile

.PHONY: watch
rewild.hl: **/*.hx
haxe compile.hxml
watch:
@inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make; done