[cig-commits] r11950 - in short/3D/PyLith/trunk: . doc doc/install doc/presentations doc/presentations/overview doc/refguide doc/userguide

brad at geodynamics.org brad at geodynamics.org
Sun May 11 13:36:18 PDT 2008


Author: brad
Date: 2008-05-11 13:36:18 -0700 (Sun, 11 May 2008)
New Revision: 11950

Added:
   short/3D/PyLith/trunk/doc/install/Makefile.am
   short/3D/PyLith/trunk/doc/presentations/Makefile.am
   short/3D/PyLith/trunk/doc/presentations/overview/Makefile.am
   short/3D/PyLith/trunk/doc/presentations/overview/makefile_pdf
   short/3D/PyLith/trunk/doc/refguide/Makefile.am
   short/3D/PyLith/trunk/doc/userguide/Makefile.am
Removed:
   short/3D/PyLith/trunk/doc/userguide/makefile
Modified:
   short/3D/PyLith/trunk/configure.ac
   short/3D/PyLith/trunk/doc/Makefile.am
Log:
Added doc files to source distribution.

Modified: short/3D/PyLith/trunk/configure.ac
===================================================================
--- short/3D/PyLith/trunk/configure.ac	2008-05-10 17:56:52 UTC (rev 11949)
+++ short/3D/PyLith/trunk/configure.ac	2008-05-11 20:36:18 UTC (rev 11950)
@@ -265,7 +265,12 @@
 		tests/3d/Makefile
 		tests/3d/tet4/Makefile
 		tests/3d/hex8/Makefile
-                doc/Makefile])
+                doc/Makefile
+		doc/install/Makefile
+		doc/refguide/Makefile
+		doc/userguide/Makefile
+		doc/presentations/Makefile
+		doc/presentations/overview/Makefile])
 
 AC_OUTPUT
 

Modified: short/3D/PyLith/trunk/doc/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/Makefile.am	2008-05-10 17:56:52 UTC (rev 11949)
+++ short/3D/PyLith/trunk/doc/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -10,18 +10,10 @@
 # ----------------------------------------------------------------------
 #
 
-manual.pdf: manual.xml
-	docbook2pdf manual.xml
+SUBDIRS = \
+	install \
+	presentations \
+	userguide \
+	refguide
 
-view:
-	xpdf manual.pdf&
-
-clean:
-	-rm manual.pdf
-
-.PHONY: view clean
-
-# version
-# $Id$
-
 # End of file 

Added: short/3D/PyLith/trunk/doc/install/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/install/Makefile.am	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/install/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,19 @@
+# -*- Makefile -*-
+#
+# ----------------------------------------------------------------------
+#
+#                           Brad T. Aagaard
+#                        U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+dist_noinst_DATA = \
+	README \
+	Cluster_Rocks-4.3-AMD64.txt \
+	Linux_Fedora8-AMD64_Aagaard.txt \
+	MacBookPro_Aagaard.txt
+
+# End of file 

Added: short/3D/PyLith/trunk/doc/presentations/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/Makefile.am	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,16 @@
+# -*- Makefile -*-
+#
+# ----------------------------------------------------------------------
+#
+#                           Brad T. Aagaard
+#                        U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+SUBDIRS = \
+	overview
+
+# End of file 

Added: short/3D/PyLith/trunk/doc/presentations/overview/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/overview/Makefile.am	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/overview/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,17 @@
+# -*- Makefile -*-
+#
+# ----------------------------------------------------------------------
+#
+#                           Brad T. Aagaard
+#                        U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+dist_noinst_DATA = \
+	pylith_overview.pdf
+
+
+# End of file 

Added: short/3D/PyLith/trunk/doc/presentations/overview/makefile_pdf
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/overview/makefile_pdf	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/overview/makefile_pdf	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,58 @@
+MASTERROOT = pylith_overview
+
+TEXMASTER = $(MASTERROOT).tex
+
+TEXSRCS = 
+
+TEXFILES = $(TEXMASTER) $(TEXSRCS)
+
+AUXFILES = $(TEXMASTER:.tex=.aux)
+
+PDFFILE = $(TEXMASTER:.tex=.pdf)
+
+DVIFILE = $(TEXMASTER:.tex=.dvi)
+
+PSFILE = $(TEXMASTER:.tex=.ps)
+
+PDFTMPFILE = tmp.pdf
+
+default:
+
+pdf: $(PDFFILE)
+ps: $(PSFILE)
+dvi: $(DVIFILE)
+
+again:
+	pdflatex $(TEXMASTER) && mv $(PDFFILE) $(PDFTMPFILE)
+	ppower4 $(PDFTMPFILE) $(PDFFILE)
+
+$(PDFTMPFILE): $(TEXFILES) $(AUXFILES)
+	pdflatex $(TEXMASTER) && mv $(PDFFILE) $(PDFTMPFILE)
+
+$(PDFFILE): $(PDFTMPFILE)
+	ppower4 $(PDFTMPFILE) $(PDFFILE)
+
+$(PSFILE): $(DVIFILE)
+	dvips -o $(PSFILE) $(DVIFILE)
+
+$(DVIFILE): $(TEXFILES) $(AUXFILES)
+	latex $(TEXMASTER)
+
+$(AUXFILES):
+	touch $(AUXFILES)
+
+clean:
+	rm -f $(AUXFILES) $(DVIFILE) $(PSFILE) $(PDFFILE) $(PDFTMPFILE)\
+		$(MASTERROOT).log $(MASTERROOT).out *~
+	rm -fr auto
+	rm `find figs -name "*.pdf"`
+
+pdffigs:
+	for i in `find figs -name "*.eps"`; do ~/bin/epstopdf $$i; done
+
+compressfigs:
+	gzip `find figs -name "*.eps"`
+
+uncompressfigs:
+	gunzip `find figs -name "*.eps.gz"`
+

Added: short/3D/PyLith/trunk/doc/refguide/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/refguide/Makefile.am	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/refguide/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,16 @@
+# -*- Makefile -*-
+#
+# ----------------------------------------------------------------------
+#
+#                           Brad T. Aagaard
+#                        U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+dist_noinst_DATA = \
+	doxyconfig
+
+# End of file 

Added: short/3D/PyLith/trunk/doc/userguide/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/userguide/Makefile.am	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/userguide/Makefile.am	2008-05-11 20:36:18 UTC (rev 11950)
@@ -0,0 +1,21 @@
+# -*- Makefile -*-
+#
+# ----------------------------------------------------------------------
+#
+#                           Brad T. Aagaard
+#                        U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+dist_noinst_DATA = \
+	pylith_book-1.1.pdf
+
+default: userguide.pdf
+
+userguide.pdf:
+	lyx -e pdflatex userguide.lyx
+
+# End of file 

Deleted: short/3D/PyLith/trunk/doc/userguide/makefile
===================================================================
--- short/3D/PyLith/trunk/doc/userguide/makefile	2008-05-10 17:56:52 UTC (rev 11949)
+++ short/3D/PyLith/trunk/doc/userguide/makefile	2008-05-11 20:36:18 UTC (rev 11950)
@@ -1,8 +0,0 @@
-default: userguide.dvi
-
-userguide.dvi:
-	latex userguide
-
-again:
-	latex userguide
-



More information about the cig-commits mailing list