mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 13:45:45 -05:00
16 lines
224 B
Makefile
16 lines
224 B
Makefile
buildargs := -b dirhtml -aE source html
|
|
|
|
.PHONY: cleanbuild clean
|
|
|
|
cleanbuild:
|
|
@make clean
|
|
@make html
|
|
|
|
clean:
|
|
rm -rf html source/cli
|
|
|
|
html:
|
|
sphinx-build $(buildargs)
|
|
|
|
serve: html
|
|
(cd html && python -m http.server 9999)
|