Files
glasshouse/makefile
2024-02-10 22:40:40 -03:00

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