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
3888a108
Commit
3888a108
authored
Feb 13, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up some of the definitions related to info generation.
parent
6a2b2c39
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Doc/Makefile
Doc/Makefile
+8
-4
No files found.
Doc/Makefile
View file @
3888a108
...
...
@@ -64,7 +64,8 @@ DOCDESTDIR= $LIBDEST/doc
EMACS
=
emacs
PYTHON
=
python
MAKEINFO
=
makeinfo
PARTPARSE
=
$(PYTHON)
./partparse.pyc
PARTPARSEOBJ
=
partparse.pyc
PARTPARSE
=
$(PYTHON)
$(PARTPARSEOBJ)
# Ideally, you shouldn't need to edit beyond this point
...
...
@@ -170,7 +171,10 @@ api.dvi: api.tex
# The remaining part of the Makefile is concerned with various
# conversions, as described above. See also the README file.
.SUFFIXES
:
.py .pyc
.SUFFIXES
:
.py .pyc .pyo
.py.pyo
:
$(PYTHON)
-O
-c
"import
$*
"
.py.pyc
:
$(PYTHON)
-c
"import
$*
"
...
...
@@ -182,7 +186,7 @@ api.dvi: api.tex
# and makeinfo can't handle a group with a leading @command. But at least
# the info file gets generated.
lib1.texi
:
lib*.tex texipre.dat texipost.dat
partparse.pyc
lib1.texi
:
lib*.tex texipre.dat texipost.dat
$(PARTPARSEOBJ)
$(PARTPARSE)
-o
lib1.texi
`
./whichlibs
`
sed
's/"{\\}n{\\}n/"\\n\\n/'
lib1.texi
>
lib2.texi
mv
lib2.texi lib1.texi
...
...
@@ -274,7 +278,7 @@ tarballs: tarpdf tarps tarhtml
# - sources: .tex, .bib, .sty
# - useful results: .dvi, .pdf, .ps, .texi, .info
clean
:
l2hclean
rm
-f
@
*
*
~
*
.aux
*
.idx
*
.ilg
*
.ind
*
.log
*
.toc
*
.blg
*
.bbl
*
.py
c
rm
-f
@
*
*
~
*
.aux
*
.idx
*
.ilg
*
.ind
*
.log
*
.toc
*
.blg
*
.bbl
*
.py
[co]
rm
-f
*
.bak
*
.orig lib1.texi
rm
-f
html-
$(VERSION)
.tar.gz postscript-
$(VERSION)
.tar.gz
rm
-f
pdf-
$(VERSION)
.tar.gz
...
...
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