6 lines
123 B
Makefile
6 lines
123 B
Makefile
|
.PHONY: sphinx
|
||
|
sphinx:
|
||
|
sphinx-build -b html -d sphinx/build/doctrees sphinx sphinx/build/html
|
||
|
|
||
|
clean:
|
||
|
rm -rf sphinx/build
|