diff options
author | Fred Drake <fdrake@acm.org> | 2000-03-31 20:26:33 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-03-31 20:26:33 (GMT) |
commit | 9c26f5dbede50784b06d1819abf1ed0cd2475ea6 (patch) | |
tree | 39c5ddb34eb722cb562017cd8f1f5bfe7740444a /Doc/longhtml | |
parent | 3bb719f744e2aa2968db1503a68e11edc21ef77b (diff) | |
download | cpython-9c26f5dbede50784b06d1819abf1ed0cd2475ea6.zip cpython-9c26f5dbede50784b06d1819abf1ed0cd2475ea6.tar.gz cpython-9c26f5dbede50784b06d1819abf1ed0cd2475ea6.tar.bz2 |
Added rule to copy in the icons/ directory.
Diffstat (limited to 'Doc/longhtml')
-rw-r--r-- | Doc/longhtml/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/longhtml/Makefile b/Doc/longhtml/Makefile index 4580c17..02ddb6c 100644 --- a/Doc/longhtml/Makefile +++ b/Doc/longhtml/Makefile @@ -39,7 +39,7 @@ COMMONPERL= $(TOPDIR)/perl/manual.perl \ $(TOPDIR)/perl/l2hinit.perl -all: $(INDEXFILES) +all: $(INDEXFILES) icons .PHONY: api ext lib mac ref tut @@ -54,6 +54,10 @@ tut: tut/tut.html $(INDEXFILES): $(COMMONPERL) \ $(TOPDIR)/html/about.dat +icons: ../html/icons + if [ ! -d icons ] ; then mkdir icons; fi + cp ../html/icons/*.* icons/ + api/api.html: $(PAPERDIR)/api.aux $(BUILDINDEX) $(TOOLSDIR)/mkhtml.sh $(MKHTML) api $(L2HARGS) -split 3 |