mime-todo-spec/Makefile
Tiara Rodney 28b2929f7d
new
2026-02-10 20:46:51 +01:00

16 lines
300 B
Makefile

.PHONY: clean
all: build/html dist/markdown publish
build/html:
sphinx-build -b html src build/html
dist/markdown:
sphinx-build -M markdown src dist
publish:
rsync -rv dist/markdown build/html root@tiararodney.com:/root/webserver/srv/http/spec.tiararodney.com/mime-todo
clean:
rm -rv build