glasshouse/makefile

8 lines
206 B
Makefile
Raw Normal View History

2024-02-11 01:40:40 +00:00
.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