Rename binaries
This commit is contained in:
parent
d308ce7231
commit
e375d0028e
@ -2,4 +2,4 @@ compile-common.hxml
|
||||
|
||||
-D windowTitle=StoneInAGlasshouse
|
||||
-lib hlsdl
|
||||
-hl bin/rewild.hl
|
||||
-hl bin/glasshouse.hl
|
||||
|
10
makefile
10
makefile
@ -1,23 +1,23 @@
|
||||
.PHONY: watch run
|
||||
|
||||
default: bin/rewild.hl
|
||||
default: bin/glasshouse.hl
|
||||
|
||||
SOURCES := $(shell find . -name \*.hx -print)
|
||||
|
||||
bin/rewild.hl: $(SOURCES)
|
||||
bin/glasshouse.hl: $(SOURCES)
|
||||
haxe compile-hl.hxml
|
||||
|
||||
bin/rewild.js: $(SOURCES)
|
||||
bin/glasshouse.js: $(SOURCES)
|
||||
haxe compile-js.hxml
|
||||
|
||||
debug: $(SOURCES)
|
||||
haxe --debug compile-hl.hxml
|
||||
|
||||
clean:
|
||||
rm -f bin/rewild.hl bin/rewild.js
|
||||
rm -f bin/glasshouse.hl bin/glasshouse.js
|
||||
|
||||
watch:
|
||||
@inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make debug; done
|
||||
|
||||
run:
|
||||
hl bin/rewild.hl
|
||||
hl bin/glasshouse.hl
|
||||
|
Loading…
Reference in New Issue
Block a user