39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
# Minimal makefile for Sphinx documentation
|
|
#
|
|
# You can set these variables from the command line, and also
|
|
# from the environment for the first two.
|
|
SPHINXOPTS ?=
|
|
SPHINXBUILD ?= sphinx-build
|
|
SOURCEDIR = source
|
|
BUILDDIR = build
|
|
UNAME_S := $(shell uname -s)
|
|
SED_FLAG = -i
|
|
ifeq ($(UNAME_S),Darwin)
|
|
SED_FLAG = -e
|
|
endif
|
|
|
|
# Put it first so that "make" without argument is like "make help".
|
|
help:
|
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
.PHONY: help Makefile
|
|
|
|
all: %
|
|
|
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
%: Makefile
|
|
@echo 'Create the trees for the files'
|
|
@tree -I '__pycache__' ../cerc_persistence/cerc_persistence/ | convert -size 496x394 -quality 100 label:@- ./source/cerc_persistence.png
|
|
|
|
@echo 'Create the uml'
|
|
@python3 ./create_dot.py
|
|
@dot -n ./source/uml.dot -Tpng -Nshape=rect -o ./source/dot.png
|
|
|
|
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
@rm ./source/*.png
|
|
@rm ./source/uml.dot
|
|
|