Skip to content

Commit

Permalink
updates makefile to handle documentaion generation a little better
Browse files Browse the repository at this point in the history
  • Loading branch information
awschult002 authored and RobLoach committed Nov 8, 2024
1 parent d1821ee commit 80805cd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

docs_path:=./doc
doxyfile:=$(docs_path)/Doxyfile



Expand All @@ -12,15 +13,14 @@ usage:
echo "make install to "install" man files"


docs: $(docs_path)/Doxyfile $(docs_path)/html/index.html $(docs_path)/doxygen-awesome-css/doxygen-awesome.css
docs: $(docs_path)/html/index.html

$(docs_path)/html/index.html: $(docs_path)/Doxyfile
doxygen $<
$(docs_path)/html/index.html: $(docs_path)/doxygen-awesome-css/doxygen-awesome.css $(doxyfile)
doxygen $(doxyfile)

$(docs_path)/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

Expand Down

0 comments on commit 80805cd

Please sign in to comment.