diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-15 21:43:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-15 21:43:55 (GMT) |
commit | 6f9dd5d7194f34878bca3631dbd539152cec0b17 (patch) | |
tree | f67710c317cb2708ab675ea0786e293d894f1c99 /Doc/html | |
parent | b8a7d7285760e68b6a6f88cce2f8c402468d8b1b (diff) | |
download | cpython-6f9dd5d7194f34878bca3631dbd539152cec0b17.zip cpython-6f9dd5d7194f34878bca3631dbd539152cec0b17.tar.gz cpython-6f9dd5d7194f34878bca3631dbd539152cec0b17.tar.bz2 |
Remove stuff related to copying the icons directory around -- just
isn't needed.
Diffstat (limited to 'Doc/html')
-rw-r--r-- | Doc/html/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/Doc/html/Makefile b/Doc/html/Makefile index c8476f8..e8cf017 100644 --- a/Doc/html/Makefile +++ b/Doc/html/Makefile @@ -38,16 +38,16 @@ COMMONPERL= $(TOPDIR)/perl/manual.perl \ $(TOPDIR)/perl/l2hinit.perl -all: icons $(INDEXFILES) +all: $(INDEXFILES) .PHONY: api ext lib mac ref tut -api: icons api/api.html -ext: icons ext/ext.html -lib: icons lib/lib.html -mac: icons mac/mac.html -ref: icons ref/ref.html -tut: icons tut/tut.html +api: api/api.html +ext: ext/ext.html +lib: lib/lib.html +mac: mac/mac.html +ref: ref/ref.html +tut: tut/tut.html $(INDEXFILES): $(COMMONPERL) $(TOPDIR)/html/about.dat @@ -89,11 +89,6 @@ $(PAPERDIR)/ref.aux: $(REFFILES) $(PAPERDIR)/tut.aux: $(TUTFILES) (cd $(PAPERDIR); $(MKAUX) tut) -# copy the icons/ directory over... -icons: - mkdir icons/ - cp $(TOPDIR)/icons/*.gif icons/ - webcheck: all $(WEBCHECKER) $(HTMLBASE)/api/ @@ -104,7 +99,7 @@ webcheck: all $(WEBCHECKER) $(HTMLBASE)/tut/ clean: - rm -rf icons/ @webchecker.pickle + rm -rf @webchecker.pickle clobber: clean rm -rf api/ ext/ lib/ mac/ ref/ tut/ |