[cig-commits] r15348 - in short/3D/PyLith/trunk/doc/presentations: . pylith1.0 pylith1.2 pylith1.3

brad at geodynamics.org brad at geodynamics.org
Fri Jun 19 08:40:19 PDT 2009


Author: brad
Date: 2009-06-19 08:40:19 -0700 (Fri, 19 Jun 2009)
New Revision: 15348

Added:
   short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile
   short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile
   short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile
Removed:
   short/3D/PyLith/trunk/doc/presentations/pylith1.0/Makefile.am
   short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile_pdf
   short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile_pdf
   short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile_pdf
Modified:
   short/3D/PyLith/trunk/doc/presentations/Makefile.am
Log:
Cleaned up presentation makefiles.

Modified: short/3D/PyLith/trunk/doc/presentations/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/Makefile.am	2009-06-19 15:36:03 UTC (rev 15347)
+++ short/3D/PyLith/trunk/doc/presentations/Makefile.am	2009-06-19 15:40:19 UTC (rev 15348)
@@ -10,7 +10,10 @@
 # ----------------------------------------------------------------------
 #
 
-SUBDIRS = \
-	pylith1.0
+EXTRA_DIST = \
+	pylith1.0/pylith_overview.pdf \
+	pylith1.2/pylith_overview.pdf \
+	pylith1.3/pylith_overview.pdf
 
+
 # End of file 

Deleted: short/3D/PyLith/trunk/doc/presentations/pylith1.0/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.0/Makefile.am	2009-06-19 15:36:03 UTC (rev 15347)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.0/Makefile.am	2009-06-19 15:40:19 UTC (rev 15348)
@@ -1,17 +0,0 @@
-# -*- Makefile -*-
-#
-# ----------------------------------------------------------------------
-#
-#                           Brad T. Aagaard
-#                        U.S. Geological Survey
-#
-# <LicenseText>
-#
-# ----------------------------------------------------------------------
-#
-
-dist_noinst_DATA = \
-	pylith_overview.pdf
-
-
-# End of file 

Copied: short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile (from rev 15341, short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile_pdf)
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile	2009-06-19 15:40:19 UTC (rev 15348)
@@ -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"`
+


Property changes on: short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile_pdf
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile_pdf	2009-06-19 15:36:03 UTC (rev 15347)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.0/makefile_pdf	2009-06-19 15:40:19 UTC (rev 15348)
@@ -1,58 +0,0 @@
-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"`
-

Copied: short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile (from rev 15341, short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile_pdf)
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile	2009-06-19 15:40:19 UTC (rev 15348)
@@ -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"`
+


Property changes on: short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile_pdf
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile_pdf	2009-06-19 15:36:03 UTC (rev 15347)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.2/makefile_pdf	2009-06-19 15:40:19 UTC (rev 15348)
@@ -1,58 +0,0 @@
-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"`
-

Copied: short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile (from rev 15341, short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile_pdf)
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile	                        (rev 0)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile	2009-06-19 15:40:19 UTC (rev 15348)
@@ -0,0 +1,59 @@
+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) $(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
+	for i in `find figs -name "*.pdf.BAK"`; do j=`echo $$i | sed -e s/.BAK//g`; cp -f $$i $$j; done
+
+compressfigs:
+	gzip `find figs -name "*.eps"`
+
+uncompressfigs:
+	gunzip `find figs -name "*.eps.gz"`
+


Property changes on: short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile_pdf
===================================================================
--- short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile_pdf	2009-06-19 15:36:03 UTC (rev 15347)
+++ short/3D/PyLith/trunk/doc/presentations/pylith1.3/makefile_pdf	2009-06-19 15:40:19 UTC (rev 15348)
@@ -1,59 +0,0 @@
-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) $(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
-	for i in `find figs -name "*.pdf.BAK"`; do j=`echo $$i | sed -e s/.BAK//g`; cp -f $$i $$j; done
-
-compressfigs:
-	gzip `find figs -name "*.eps"`
-
-uncompressfigs:
-	gunzip `find figs -name "*.eps.gz"`
-



More information about the CIG-COMMITS mailing list