11 lines
160 B
Makefile
11 lines
160 B
Makefile
.PHONY: *
|
|
|
|
build:
|
|
./build.py
|
|
|
|
watch:
|
|
while sleep 1; do find src/ build.py Makefile | entr -d make build; done
|
|
|
|
serve:
|
|
python -m http.server --directory out/
|