16 lines
300 B
Makefile
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
|