Make HTML5 work again
This commit is contained in:
11
makefile
11
makefile
@ -1,12 +1,15 @@
|
||||
.PHONY: watch
|
||||
|
||||
default: rewild.hl
|
||||
default: bin/rewild.hl
|
||||
|
||||
rewild.hl: **/*.hx
|
||||
haxe compile.hxml
|
||||
bin/rewild.hl: **/*.hx
|
||||
haxe compile-hl.hxml
|
||||
|
||||
bin/rewild.js: **/*.hx
|
||||
haxe compile-js.hxml
|
||||
|
||||
clean:
|
||||
rm rewild.hl
|
||||
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
|
||||
|
Reference in New Issue
Block a user