[Python-checkins] CVS: python/nondist/peps Makefile,NONE,1.1

Fred L. Drake python-dev@python.org
Wed, 6 Sep 2000 18:29:35 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv21442

Added Files:
	Makefile 
Log Message:

Makefile to build only the required HTML versions of the PEPs rather than
all of them.


--- NEW FILE ---
# Rules to only make the required HTML versions, not all of them,
# without the user having to keep track of which.
#
# Not really important, but convenient.

PEP2HTML=./pep2html.py -q

.SUFFIXES: .txt .html

.txt.html:
	$(PEP2HTML) $<

TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-*.txt))

all:	$(TARGETS)