mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 02:26:29 +03:00
Updated dr_libs libraries. URI now uses implicit constructors. Improved documentation. --HG-- branch : dev
21 lines
434 B
Makefile
21 lines
434 B
Makefile
SPHINXOPTS = -j auto -c .
|
|
SPHINXBUILD = sphinx-build
|
|
SOURCEDIR = ../rst
|
|
BUILDDIR = ../html
|
|
|
|
clean:
|
|
rm -rf ../doxygen-html ../html ../xml ../rst && mkdir ../xml
|
|
|
|
doxygen:
|
|
cd ../../ && doxygen Doxyfile
|
|
|
|
doxyrest: doxygen
|
|
doxyrest -c doxyrest-config.lua
|
|
|
|
sphinx: doxyrest
|
|
@$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
.PHONY: clean doxygen doxyrest sphinx
|
|
|
|
all: clean doxygen doxyrest sphinx
|