diff --git a/README.md b/README.md new file mode 100644 index 0000000..c4fd19c --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# rewild / stone in a glasshouse + +## Development + +### Compiling + +`haxe compile.hxml` + +### Running + +`hl rewild.hl` diff --git a/makefile b/makefile new file mode 100644 index 0000000..82f3b9a --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +.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