mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 21:55:43 -05:00
17 lines
224 B
Makefile
17 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)
|