gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] storm Makefile


From: Asko Soukka
Subject: [Gzz-commits] storm Makefile
Date: Fri, 25 Apr 2003 07:29:02 -0400

CVSROOT:        /cvsroot/storm
Module name:    storm
Changes by:     Asko Soukka <address@hidden>    03/04/25 07:29:02

Modified files:
        .              : Makefile 

Log message:
        navidoc targets

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/storm/storm/Makefile.diff?tr1=1.12&tr2=1.13&r1=text&r2=text

Patches:
Index: storm/Makefile
diff -u storm/Makefile:1.12 storm/Makefile:1.13
--- storm/Makefile:1.12 Thu Apr 24 06:02:40 2003
+++ storm/Makefile      Fri Apr 25 07:29:02 2003
@@ -40,18 +40,42 @@
 run-jython:
        $(JAVA) $(DEBUG) $(PYTHONPATH) org.python.util.jython
 
-########################
-# Navidoc targets begin
-docs:   # navidoc make html is recursive
+##########################################################################
+# General documentation targets
+docs:   java-doc navidoc navilink
+
+DOCPKGS= org.nongnu.storm\
+        org.nongnu.storm.storage\
+        org.nongnu.storm.util
+
+JAVADOCOPTS=-use -version -author -windowtitle "Storm Java API"
+java-doc:
+       find . -name '*.class' | xargs rm -f # Don't let javadoc see these
+       rm -Rf doc/javadoc
+       mkdir -p doc/javadoc
+       javadoc $(JAVADOCOPTS) -d doc/javadoc -sourcepath . $(DOCPKGS)
+##########################################################################
+# Navidoc documentation targets
+navidoc: # Compiles ReST into HTML
        make -C "../navidoc/" html RST="../storm/doc/"
 
-pegs:   # navidoc make html is recursive
-       make -C "../navidoc/" html RST="../storm/doc/pegboard/"
+navilink: # Bi-directional linking using imagemaps
+       make -C "../navidoc/" imagemap HTML="../storm/doc/"
+
+peg: # Creates a new PEG, uses python for quick use
+       make -C "../navidoc/" new-peg PEGDIR="../storm/doc/pegboard"
 
-html:
+pegs:   # Compiles only pegboard
+       make -C "../navidoc/" html $(DBG) RST="../storm/doc/pegboard/"
+
+html: # Compiles ReST into HTML, directories are processed recursively
        make -C "../navidoc/" html $(DBG) RST="../storm/$(RST)"
 
-html-loop:
+html-loop: # Loop version for quick recompiling
        make -C "../navidoc/" html-loop $(DBG) RST="../storm/$(RST)"
-# Navidoc targets end
-######################
+
+latex: # Compiles ReST into LaTeX, directories are processed recursively
+       make -C "../navidoc/" latex $(DBG) RST="../storm/$(RST)"
+
+latex-loop: # Loop version for quick recompiling
+       make -C "../navidoc/" latex-loop $(DBG) RST="../storm/$(RST)"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]