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