Commit 3a7a3d74 authored by Fred Drake's avatar Fred Drake

"Driver" makefile to convert all documents to SGML or XML at once.

parent 77274166
# Simple makefile to control SGML generation for the entire document tree.
# This should be used from the top-level directory (Doc/), not the directory
# that actually contains this file:
#
# $ pwd
# .../Doc
# $ make -f tools/sgmlconv/Makefile
TOPDIR=.
TOOLSDIR=$(TOPDIR)/tools
SGMLRULES=../$(TOOLSDIR)/sgmlconv/make.rules
SUBDIRS=api ext lib mac ref tut
all: sgml
.PHONY: sgml xml
sgml:
for DIR in $(SUBDIRS) ; do \
(cd $$DIR; \
$(MAKE) -f $(SGMLRULES) TOOLSDIR=../$(TOOLSDIR) sgml) \
done
xml:
for DIR in $(SUBDIRS) ; do \
(cd $$DIR; \
$(MAKE) -f $(SGMLRULES) TOOLSDIR=../$(TOOLSDIR) xml) \
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment