mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-05-14 10:53:55 +00:00
32 lines
405 B
Makefile
32 lines
405 B
Makefile
# Makefile for Sphinx documentation
|
|
#
|
|
|
|
all:
|
|
make -C source html
|
|
|
|
htmlall:
|
|
make -C source htmlall
|
|
|
|
htmlzh:
|
|
make -C source htmlzh
|
|
|
|
htmlde:
|
|
make -C source htmlde
|
|
|
|
html:
|
|
make -C source html
|
|
|
|
linkcheck:
|
|
make -C source linkcheck
|
|
|
|
py:
|
|
make -C source py
|
|
|
|
help:
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
@echo " html to make standalone HTML files"
|
|
|
|
clean:
|
|
make -C source clean
|
|
|