diff options
| -rw-r--r-- | documentation/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 349c7a209..245dc2ee1 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -140,6 +140,7 @@ uninstall-linux uninstall-osx: Doxyfile: Doxyfile.in generated.dox copyright.dox echo "Generating Doxyfile ..." + $(DOXYDOC) -u -s - < $< | \ sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \ -e's,@GENERATE_HTML@,YES,' \ -e's,@GENERATE_LATEX@,NO,' \ @@ -147,10 +148,11 @@ Doxyfile: Doxyfile.in generated.dox copyright.dox -e's,@CMAKE_CURRENT_SOURCE_DIR@,.,' \ -e's,@CMAKE_CURRENT_BINARY_DIR@,,' \ -e's,@FLTK_SOURCE_DIR@,..,' \ - < $< > $@ + > $@ Doxybook: Doxyfile.in generated.dox copyright.dox echo "Generating Doxybook ..." + $(DOXYDOC) -u -s - < $< | \ sed -e's,@FLTK_VERSION@,$(FLTK_VERSION),' \ -e's,@GENERATE_HTML@,NO,' \ -e's,@GENERATE_LATEX@,YES,' \ @@ -158,7 +160,7 @@ Doxybook: Doxyfile.in generated.dox copyright.dox -e's,@CMAKE_CURRENT_SOURCE_DIR@,.,' \ -e's,@CMAKE_CURRENT_BINARY_DIR@,,' \ -e's,@FLTK_SOURCE_DIR@,..,' \ - < $< > $@ + > $@ # The HTML files are generated using doxygen, and this needs # an installed doxygen version and may take some time, so this target |
