File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ lapacke_example: lapackelib lapacklib blaslib
120120.PHONY : html
121121html :
122122 @echo " LAPACK HTML PAGES GENERATION with Doxygen"
123- doxygen DOCS/Doxyfile
123+ ( cat DOCS/Doxyfile ; echo " OUTPUT_DIRECTORY= $( DOCSDIR ) " ) | doxygen -
124124 @echo " =================="
125125 @echo " LAPACK HTML PAGES GENERATED in DOCS/explore-html"
126126 @echo " Usage: open DOCS/explore-html/index.html"
@@ -130,9 +130,10 @@ html:
130130.PHONY : man
131131man :
132132 @echo " LAPACK MAN PAGES GENERATION with Doxygen"
133- doxygen DOCS/Doxyfile_man
133+ @echo " OUTPUT_DIRECTORY=$( DOCSDIR) "
134+ ( cat DOCS/Doxyfile_man ; echo " OUTPUT_DIRECTORY=$( DOCSDIR) " ) | doxygen -
134135 @echo " =================="
135- @echo " LAPACK MAN PAGES GENERATED in DOCS/MAN "
136+ @echo " LAPACK MAN PAGES GENERATED in DOCS/man "
136137 @echo " Set your MANPATH env variable accordingly"
137138 @echo " Usage: man dgetrf.f"
138139 @echo " =================="
Original file line number Diff line number Diff line change @@ -81,3 +81,8 @@ CBLASLIB = $(TOPSRCDIR)/libcblas.a
8181LAPACKLIB = $(TOPSRCDIR)/liblapack.a
8282TMGLIB = $(TOPSRCDIR)/libtmglib.a
8383LAPACKELIB = $(TOPSRCDIR)/liblapacke.a
84+
85+ # DOCUMENTATION DIRECTORY
86+ # If you generate html pages (make html), documentation will be placed in $(DOCSDIR)/explore-html
87+ # If you generate man pages (make man), documentation will be placed in $(DOCSDIR)/man
88+ DOCSDIR = $(TOPSRCDIR)/DOCS
You can’t perform that action at this time.
0 commit comments