mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-06-30 09:46:42 +00:00
45678abde7
Makefile is rebuild with simple targets to point to source directory. Now the users can use "make" or "make html" at root repo path and the html documentation is built.
17 lines
245 B
Makefile
17 lines
245 B
Makefile
# Makefile for Sphinx documentation
|
|
#
|
|
|
|
all:
|
|
make -C source html
|
|
|
|
html:
|
|
make -C source html
|
|
|
|
help:
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
@echo " html to make standalone HTML files"
|
|
|
|
clean:
|
|
make -C source clean
|
|
|