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
15087437
Commit
15087437
authored
Mar 16, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for "Documenting Python".
parent
8df362cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
3 deletions
+23
-3
Doc/Makefile
Doc/Makefile
+9
-0
Doc/Makefile.deps
Doc/Makefile.deps
+2
-0
Doc/paper-letter/Makefile
Doc/paper-letter/Makefile
+12
-3
No files found.
Doc/Makefile
View file @
15087437
...
...
@@ -84,6 +84,9 @@ world: ps pdf html tarballs
api api.ps
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
api.ps
)
doc doc.ps
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
doc.ps
)
ext ext.ps
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
ext.ps
)
...
...
@@ -103,6 +106,9 @@ tut tut.ps:
api.dvi
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
api.dvi
)
doc.dvi
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
doc.dvi
)
ext.dvi
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
ext.dvi
)
...
...
@@ -122,6 +128,9 @@ tut.dvi:
api.pdf
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
api.pdf
)
doc.pdf
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
doc.pdf
)
ext.pdf
:
(
cd
paper-
$(PAPER)
;
$(MAKE)
ext.pdf
)
...
...
Doc/Makefile.deps
View file @
15087437
...
...
@@ -4,6 +4,8 @@
APIFILES
=
../api/api.tex
DOCFILES
=
../doc/doc.tex
EXTFILES
=
../ext/ext.tex
TUTFILES
=
../tut/tut.tex
...
...
Doc/paper-letter/Makefile
View file @
15087437
...
...
@@ -12,19 +12,21 @@ TOOLSDIR= ../tools
TEXINPUTS
=
.:../texinputs:
MKDVI
=
TEXINPUTS
=
$(TEXINPUTS)
$(TOOLSDIR)
/mkdvi.sh
# The --keep option is needed to keep the intermediate files for generating
# the HTML global module index.
MKHOWTO
=
$(TOOLSDIR)
/mkhowto
--keep
MKPDF
=
TEXINPUTS
=
$(TEXINPUTS)
$(TOOLSDIR)
/mkdvi.sh
--pdf
# what's what
MANDVIFILES
=
api.dvi ext.dvi lib.dvi ref.dvi tut.dvi
HOWTODVIFILES
=
mac.dvi
HOWTODVIFILES
=
doc.dvi
mac.dvi
MANPDFFILES
=
api.pdf ext.pdf lib.pdf ref.pdf tut.pdf
HOWTOPDFFILES
=
mac.pdf
HOWTOPDFFILES
=
doc.pdf
mac.pdf
MANPSFILES
=
api.ps ext.ps lib.ps ref.ps tut.ps
HOWTOPSFILES
=
mac.ps
HOWTOPSFILES
=
doc.ps
mac.ps
DVIFILES
=
$(MANDVIFILES)
$(HOWTODVIFILES)
PDFFILES
=
$(MANPDFFILES)
$(HOWTOPDFFILES)
...
...
@@ -104,6 +106,13 @@ api.dvi: $(APIFILES)
api.pdf
:
$(APIFILES)
$(MKPDF)
api
# Documenting Python
doc.dvi
:
$(DOCFILES) ../texinputs/ltxmarkup.sty
$(MKHOWTO)
--dvi
../doc/doc.tex
doc.pdf
:
$(DOCCFILES) ../texinputs/ltxmarkup.sty
$(MKHOWTO)
--pdf
../doc/doc.tex
# Extending and Embedding the Python Interpreter
ext.dvi
:
$(EXTFILES)
$(MKDVI)
ext
...
...
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