[Lemon-commits] [lemon_svn] klao: r1930 - in hugo/trunk: . doc

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:48:52 CET 2006


Author: klao
Date: Wed Jun  8 14:35:18 2005
New Revision: 1930

Modified:
   hugo/trunk/Makefile.am
   hugo/trunk/doc/Makefile.am

Log:
* Doc generation restructuring: don't remove the whole html/
  subdirectory on each generation.

* doc target in make


Modified: hugo/trunk/Makefile.am
==============================================================================
--- hugo/trunk/Makefile.am	(original)
+++ hugo/trunk/Makefile.am	Wed Jun  8 14:35:18 2005
@@ -36,9 +36,15 @@
 	demo/Makefile.in \
 	gui/Makefile.in
 
-docs:
+doc-clean:
 	$(MAKE) -C doc $(AM_MAKEFLAGS) clean html
 
+docs:
+	-rm -f doc/html/index.html
+	$(MAKE) -C doc $(AM_MAKEFLAGS) html
+
+doc: docs
+
 benchmark:
 	$(MAKE) -C benchmark $(AM_MAKEFLAGS)
 

Modified: hugo/trunk/doc/Makefile.am
==============================================================================
--- hugo/trunk/doc/Makefile.am	(original)
+++ hugo/trunk/doc/Makefile.am	Wed Jun  8 14:35:18 2005
@@ -16,7 +16,10 @@
 ## TODO: 'html/index.html' should depend on the files listed in Doxyfile's
 ## INPUT variable.
 html/index.html:
-	if test ${doxygen_found} = yes; then doxygen Doxyfile; fi
+	if test ${doxygen_found} = yes; then \
+	  doxygen Doxyfile; \
+	  cp icons/geom/ftv2* html; \
+	fi
 
 ## This is needed to make 'make dist' work even if the 'html' subdirectory
 ## does not exist.



More information about the Lemon-commits mailing list