[Zodb-checkins] CVS: ZODB3/Doc - Makefile:1.5

Fred L. Drake, Jr. fred@zope.com
Thu, 23 Jan 2003 15:06:14 -0500


Update of /cvs-repository/ZODB3/Doc
In directory cvs.zope.org:/tmp/cvs-serv6316

Modified Files:
	Makefile 
Log Message:
Make the convenience targets match other places we build the docs this
way.


=== ZODB3/Doc/Makefile 1.4 => 1.5 ===
--- ZODB3/Doc/Makefile:1.4	Fri Jan 17 16:29:25 2003
+++ ZODB3/Doc/Makefile	Thu Jan 23 15:06:12 2003
@@ -6,23 +6,31 @@
 	  guide/prog-zodb.tex guide/storages.tex guide/transactions.tex \
 	  guide/zeo.tex guide/zodb.tex 
 
-all: pdf html
+default: pdf
+all:	 pdf ps html
 
-pdf: storage.pdf zodb.pdf
+pdf:	storage.pdf zodb.pdf
+ps:	storage.ps zodb.ps
 
-html: storage/storage.html zodb/zodb.html
+html:	storage/storage.html zodb/zodb.html
 
 storage.pdf: storage.tex
 	$(MKHOWTO) --pdf $<
 
+storage.ps: storage.tex
+	$(MKHOWTO) --ps $<
+
 storage/storage.html: storage.tex
 	$(MKHTML) storage.tex
 
 zodb.pdf: $(ZODBTEX)
 	$(MKHOWTO) --pdf guide/zodb.tex
 
+zodb.ps: $(ZODBTEX)
+	$(MKHOWTO) --ps guide/zodb.tex
+
 zodb/zodb.html: $(ZODBTEX)
 	$(MKHTML) guide/zodb.tex
 
 clobber:
-	rm -rf storage.pdf storage/ zodb.pdf zodb/
+	rm -rf storage.pdf storage.ps storage/ zodb.pdf zodb.ps zodb/