Files
clear-linux-documentation/Makefile
T
Miguel Bernal Marin 45678abde7 Makefile: rebuild root Makefile
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.
2017-05-30 11:40:25 -05:00

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