37 lines
740 B
Makefile
37 lines
740 B
Makefile
|
|
docs_path:=./doc
|
|
doxyfile:=$(docs_path)/Doxyfile
|
|
|
|
|
|
|
|
.PHONY: usage
|
|
|
|
usage:
|
|
echo "make docs to create documentation"
|
|
echo "make nuke to rebuild the single header nuklear.h from source"
|
|
echo "make all to re-pack the header and create documentation"
|
|
echo "make install to "install" man files"
|
|
|
|
|
|
docs: $(docs_path)/html/index.html
|
|
|
|
$(docs_path)/html/index.html: $(docs_path)/doxygen-awesome-css/doxygen-awesome.css $(doxyfile)
|
|
doxygen $(doxyfile)
|
|
|
|
$(doxyfile):
|
|
doxygen -g $@
|
|
|
|
$(docs_path)/doxygen-awesome-css/doxygen-awesome.css:
|
|
git clone https://github.com/jothepro/doxygen-awesome-css.git $(docs_path)/doxygen-awesome-css --branch v2.3.4
|
|
|
|
nuke:
|
|
cd ./src && ./paq.sh
|
|
|
|
all: docs nuke
|
|
|
|
install:
|
|
|
|
clean:
|
|
rm -rf $(docs_path)/html
|
|
|