.PHONY: watch

default: bin/rewild.hl

bin/rewild.hl: **/*.hx
	haxe compile-hl.hxml

bin/rewild.js: **/*.hx
	haxe compile-js.hxml

clean:
	rm -f bin/rewild.hl bin/rewild.js

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