gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] alph Makefile


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

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

Modified files:
        .              : Makefile 

Log message:
        navidoc targets

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/alph/alph/Makefile.diff?tr1=1.10&tr2=1.11&r1=text&r2=text

Patches:
Index: alph/Makefile
diff -u alph/Makefile:1.10 alph/Makefile:1.11
--- alph/Makefile:1.10  Mon Apr 21 15:48:13 2003
+++ alph/Makefile       Fri Apr 25 07:29:16 2003
@@ -42,18 +42,43 @@
 tags::
        ctags -R
 
-########################
-# Navidoc targets begin
-docs:   # navidoc make html is recursive
+##########################################################################
+# General documentation targets
+docs:   java-doc navidoc navilink
+
+DOCPKGS= org.nongnu.alph\
+        org.nongnu.alph.util\
+        org.nongnu.alph.xml\
+        org.nongnu.alph.impl
+
+JAVADOCOPTS=-use -version -author -windowtitle "Alph 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="../alph/doc/"
 
-pegs:   # navidoc make html is recursive
-       make -C "../navidoc/" html RST="../alph/doc/pegboard/"
+navilink: # Bi-directional linking using imagemaps
+       make -C "../navidoc/" imagemap HTML="../alph/doc/"
+
+peg: # Creates a new PEG, uses python for quick use
+       make -C "../navidoc/" new-peg PEGDIR="../alph/doc/pegboard"
 
-html:
+pegs:   # Compiles only pegboard
+       make -C "../navidoc/" html $(DBG) RST="../alph/doc/pegboard/"
+
+html: # Compiles ReST into HTML, directories are processed recursively
        make -C "../navidoc/" html $(DBG) RST="../alph/$(RST)"
 
-html-loop:
+html-loop: # Loop version for quick recompiling
        make -C "../navidoc/" html-loop $(DBG) RST="../alph/$(RST)"
-# Navidoc targets end
-######################
+
+latex: # Compiles ReST into LaTeX, directories are processed recursively
+       make -C "../navidoc/" latex $(DBG) RST="../alph/$(RST)"
+
+latex-loop: # Loop version for quick recompiling
+       make -C "../navidoc/" latex-loop $(DBG) RST="../alph/$(RST)"




reply via email to

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