[Zodb-checkins] CVS: ZODB3/Doc - Makefile:1.4
Fred L. Drake, Jr.
fred@zope.com
Fri, 17 Jan 2003 16:29:27 -0500
Update of /cvs-repository/ZODB3/Doc
In directory cvs.zope.org:/tmp/cvs-serv23393
Modified Files:
Makefile
Log Message:
Format all the documents in this directory, even though the sources
for one are in a subdir. This makes it easier for readers to locate
all the docs.
=== ZODB3/Doc/Makefile 1.3 => 1.4 ===
--- ZODB3/Doc/Makefile:1.3 Fri Jan 17 15:26:51 2003
+++ ZODB3/Doc/Makefile Fri Jan 17 16:29:25 2003
@@ -1,16 +1,28 @@
MKHOWTO=mkhowto
+MKHTML=$(MKHOWTO) --html --iconserver=. --split=4 --dvips-safe
+
+ZODBTEX = guide/gfdl.tex guide/introduction.tex guide/modules.tex \
+ guide/prog-zodb.tex guide/storages.tex guide/transactions.tex \
+ guide/zeo.tex guide/zodb.tex
+
all: pdf html
-pdf: storage.pdf
+pdf: storage.pdf zodb.pdf
-html: storage/storage.html
+html: storage/storage.html zodb/zodb.html
storage.pdf: storage.tex
$(MKHOWTO) --pdf $<
storage/storage.html: storage.tex
- $(MKHOWTO) --html --iconserver=. --split=4 --dvips-safe
+ $(MKHTML) storage.tex
+
+zodb.pdf: $(ZODBTEX)
+ $(MKHOWTO) --pdf guide/zodb.tex
+
+zodb/zodb.html: $(ZODBTEX)
+ $(MKHTML) guide/zodb.tex
-clean:
- rm -rf storage.pdf storage/
+clobber:
+ rm -rf storage.pdf storage/ zodb.pdf zodb/