Makefile and basic documentation

This commit is contained in:
3wc 2024-02-10 22:40:40 -03:00
parent e4552b8213
commit 5e60f6763f
2 changed files with 18 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# rewild / stone in a glasshouse
## Development
### Compiling
`haxe compile.hxml`
### Running
`hl rewild.hl`

7
makefile Normal file
View File

@ -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