diff options
author | Fred Drake <fdrake@acm.org> | 1996-12-06 20:06:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1996-12-06 20:06:37 (GMT) |
commit | d560605ae61d05d663e51c789f868bc1def8fa58 (patch) | |
tree | e1d7468510936106057aaaead76edee578fd3592 /Doc/Makefile | |
parent | fc8f6f3ed391b0ae781f2f681f235b05b0ff1f3d (diff) | |
download | cpython-d560605ae61d05d663e51c789f868bc1def8fa58.zip cpython-d560605ae61d05d663e51c789f868bc1def8fa58.tar.gz cpython-d560605ae61d05d663e51c789f868bc1def8fa58.tar.bz2 |
(Makefile): Added sym links for each manual, i.e., index.html -> lib.html.
This makes addressing the manuals a little simpler.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 8cf093a..e25e1d1 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -173,6 +173,7 @@ l2htut: tut.dvi myformat.perl sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \ <tut/tut.html >tut/xxx mv tut/xxx tut/tut.html + ln -s tut.html tut/index.html mv tut python-tut l2hext: ext.dvi myformat.perl @@ -180,6 +181,7 @@ l2hext: ext.dvi myformat.perl @rm -rf python-ext sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \ <ext/ext.html >ext/xxx + ln -s ext.html ext/index.html mv ext/xxx ext/ext.html mv ext python-ext @@ -190,6 +192,7 @@ l2hlib: lib.dvi myformat.perl sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \ <lib/lib.html >lib/xxx mv lib/xxx lib/lib.html + ln -s lib.html lib/index.html @rm -rf python-lib mv lib python-lib |