[Zope3-checkins] CVS: Zope3/doc - Makefile:1.1

Fred L. Drake, Jr. fred at zope.com
Thu Aug 28 19:58:09 EDT 2003


Update of /cvs-repository/Zope3/doc
In directory cvs.zope.org:/tmp/cvs-serv29633

Added Files:
	Makefile 
Log Message:
Makefile to convert the various ReST documents to HTML.


=== Added File Zope3/doc/Makefile ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

# Tell make how to convert .txt files to .html files:
.SUFFIXES: .txt .html

.txt.html::
	../utilities/rst2html $<

# Some convenient targets:
all:	schema zsync

.PHONY:	schema
schema:	schema/vocabularies.html

ZSYNC_HTML=zsync/zbundle.html zsync/zsync.html zsync/README.html
$(ZSYNC_HTML): zsync/links.rst
.PHONY:	zsync
zsync:	$(ZSYNC_HTML)




More information about the Zope3-Checkins mailing list