Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8fd84f38
Commit
8fd84f38
authored
May 15, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for the Macintosh Library Modules document.
parent
6c118f83
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
Doc/Makefile
Doc/Makefile
+18
-7
Doc/html/Makefile
Doc/html/Makefile
+4
-1
No files found.
Doc/Makefile
View file @
8fd84f38
...
...
@@ -75,15 +75,16 @@ VPATH=.
RELEASE
=
1.5.1
VERSION
=
1.5
DVIFILES
=
api.dvi ext.dvi lib.dvi ref.dvi tut.dvi
PDFFILES
=
api.pdf ext.pdf lib.pdf ref.pdf tut.pdf
PSFILES
=
api.ps ext.ps lib.ps ref.ps tut.ps
DVIFILES
=
api.dvi ext.dvi lib.dvi
mac.dvi
ref.dvi tut.dvi
PDFFILES
=
api.pdf ext.pdf lib.pdf
mac.pdf
ref.pdf tut.pdf
PSFILES
=
api.ps ext.ps lib.ps
mac.ps
ref.ps tut.ps
# Be careful when messing with this one!
TEXINPUTS
=
.:../texinputs:
MKDVI
=
TEXINPUTS
=
$(TEXINPUTS)
$(srcdir)
/tools/mkdvi.sh
MKHTML
=
TEXINPUTS
=
$(TEXINPUTS)
$(srcdir)
/tools/mkhtml.sh
MKHOWTO
=
$(srcdir)
/tools/mkhowto.sh
--keep
MKHTML
=
PAPER
=
$(PAPER)
$(srcdir)
/tools/mkhtml.sh
MKPDF
=
TEXINPUTS
=
$(TEXINPUTS)
$(srcdir)
/tools/mkdvi.sh
--pdf
# Main target
...
...
@@ -140,7 +141,7 @@ tut:
do-dvi
:
$(DVIFILES)
do-pdf
:
$(PDFFILES)
do-ps
:
$(PSFILES)
do-ps
:
$(PSFILES)
# This target gets both the PDF and PS files updated.
#
...
...
@@ -251,6 +252,13 @@ ext.dvi: ext/ext.tex
ext.pdf
:
ext/ext.tex
$(MKPDF)
ext
# Macintosh Library Modules
mac.dvi
:
$(MACLIBFILES) tools/mkhowto.sh
$(MKHOWTO)
--dvi
$(srcdir)
/
$*
/
$*
.tex
mac.pdf
:
$(MACLIBFILES) tools/mkhowto.sh
$(MKHOWTO)
--pdf
$(srcdir)
/
$*
/
$*
.tex
# Python Reference Manual
ref.dvi
:
$(REFFILES)
$(MKDVI)
ref
...
...
@@ -290,7 +298,7 @@ COMMONPERL=perl/manual.perl perl/python.perl
html
:
l2h
l2h
:
(
cd
$(HTMLDIR)
;
$(MAKE)
TEXINPUTS
=
../paper-
$(PAPER)
:../texinputs
)
(
cd
$(HTMLDIR)
;
$(MAKE)
TEXINPUTS
=
../paper-
$(PAPER)
:../texinputs
:
)
l2hapi
:
$(COMMONPERL)
$(MKHTML)
api
$(L2HARGS)
...
...
@@ -298,11 +306,14 @@ l2hapi: $(COMMONPERL)
l2hext
:
$(COMMONPERL)
$(MKHTML)
ext
$(L2HARGS)
l2hlib
:
$(COMMONPERL)
l2hlib
:
$(COMMONPERL)
$(LIBFILES)
$(srcdir)
/tools/fix_libaux.sed <
`
$(KPSEWHICH)
lib.aux
`
>
lib1.aux
mv
lib1.aux
`
$(KPSEWHICH)
lib.aux
`
$(MKHTML)
lib
$(L2HARGS)
l2hmac
:
$(COMMONPERL) $(MACLIBFILES)
$(srcdir)
/tools/mkhowto.sh
--html
$(srcdir)
/mac/mac.tex
l2href
:
$(COMMONPERL)
$(MKHTML)
ref
$(L2HARGS)
...
...
Doc/html/Makefile
View file @
8fd84f38
...
...
@@ -9,7 +9,7 @@ TEXINPUTS=..:../texinputs
all
:
icons l2h
l2h
:
l2hapi l2hext l2hlib l2href l2htut
l2h
:
l2hapi l2hext l2hlib l2h
mac l2h
ref l2htut
l2hapi
:
$(MAKE)
srcdir
=
..
VPATH
=
..
TEXINPUTS
=
$(TEXINPUTS)
-f
../Makefile l2hapi
...
...
@@ -20,6 +20,9 @@ l2hext:
l2hlib
:
$(MAKE)
srcdir
=
..
VPATH
=
..
TEXINPUTS
=
$(TEXINPUTS)
-f
../Makefile l2hlib
l2hmac
:
$(MAKE)
srcdir
=
..
VPATH
=
..
TEXINPUTS
=
$(TEXINPUTS)
-f
../Makefile l2hmac
l2href
:
$(MAKE)
srcdir
=
..
VPATH
=
..
TEXINPUTS
=
$(TEXINPUTS)
-f
../Makefile l2href
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment