diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-07 14:50:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-07 14:50:22 (GMT) |
commit | 60515f49b8b603606c72c4b8ae15dcdc9bfcea04 (patch) | |
tree | 4b9c89609265c778e6e19069f99242840f75eec0 | |
parent | 89df70bfbbc968902eca44ee6a17989f0742d08f (diff) | |
download | cpython-60515f49b8b603606c72c4b8ae15dcdc9bfcea04.zip cpython-60515f49b8b603606c72c4b8ae15dcdc9bfcea04.tar.gz cpython-60515f49b8b603606c72c4b8ae15dcdc9bfcea04.tar.bz2 |
Sub-makefile that can be used to drive the HTML conversion from this subdir.
Most of the logic is still in the primary Makefile and a new script in
Doc/tools/.
-rw-r--r-- | Doc/html/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile new file mode 100644 index 0000000..5973154 --- /dev/null +++ b/Doc/html/Makefile @@ -0,0 +1,34 @@ +# Convenience Makefile for building HTML documentation. You probably need to +# set TEXINPUTS from the command line for this to be useful, unless you +# actually build the .dvi files in the top level directory. +# +# Note that the .dvi files must already be built and TEXINPUTS must include the +# directory where latex's working files (esp. *.aux) are kept. + +TEXINPUTS=..:../texinputs + +all: icons l2h + +l2h: l2hapi l2hext l2hlib l2href l2htut + +l2hapi: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile l2hapi + +l2hext: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile l2hext + +l2hlib: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile l2hlib + +l2href: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile l2href + +l2htut: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile l2htut + +tarhtml: + $(MAKE) srcdir=.. VPATH=.. -f ../Makefile tarhtml + +icons: + mkdir icons + cp ../icons/*.gif icons/ |