Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
78104a9b
Kaydet (Commit)
78104a9b
authored
Ock 08, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace most everything but the comment at the top.
üst
c4e92630
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
24 deletions
+66
-24
Makefile
Doc/info/Makefile
+66
-24
No files found.
Doc/info/Makefile
Dosyayı görüntüle @
78104a9b
# Generate the Python "info" documentation.
# Generate the Python "info" documentation.
# These is only used for .info generation:
PAPER
=
letter
EMACS
=
emacs
TOPDIR
=
..
MAKEINFO
=
makeinfo
TOOLSDIR
=
$(TOPDIR)
/tools
P
YTHON
=
python
P
APERDIR
=
$(TOPDIR)
/paper-
$(PAPER)
PARTPARSE
=
$(PYTHON)
../tools/partparse.py
HTMLDIR
=
$(TOPDIR)
/html
MKINFO
=
$(TOOLSDIR)
/mkinfo
SCRIPTS
=
$(TOOLSDIR)
/html2texi.pl
$(TOOLSDIR)
/checkargs.pm
$(TOOLSDIR)
/mkinfo
all
:
python-lib.info
all
:
python-api.info python-ext.info python-lib.info
\
python-mac.info python-ref.info python-tut.info
.PRECIOUS
:
python-lib.texi
python-api.info
:
$(HTMLDIR)/api/api.html $(SCRIPTS)
$(MKINFO)
$<
# The sed script in this target fixes a really nasty little condition in
python-ext.info
:
$(HTMLDIR)/ext/ext.html $(SCRIPTS)
# libcgi.tex where \e has to be used in a group to get the right behavior,
$(MKINFO)
$<
# and makeinfo can't handle a group without a leading @command. But at
# least the info file gets generated.
lib1.texi
:
$(LIBFILES) texipre.dat texipost.dat ../tools/partparse.py
python-lib.info
:
$(HTMLDIR)/lib/lib.html $(SCRIPTS)
$(PARTPARSE)
-o
$@
`
../tools/whichlibs
`
$(MKINFO)
$<
sed
's/"{\\}n{\\}n/"\\n\\n/'
$@
>
temp.texi
mv
temp.texi
$@
python-lib.texi
:
lib1.texi ../tools/fix.el
python-mac.info
:
$(HTMLDIR)/mac/mac.html $(SCRIPTS)
cp
lib1.texi temp.texi
$(MKINFO)
$<
$(EMACS)
-batch
-l
../tools/fix.el
-f
save-buffer
-kill
mv
temp.texi
$@
python-ref.info
:
$(HTMLDIR)/ref/ref.html $(SCRIPTS)
$(MKINFO)
$<
python-tut.info
:
$(HTMLDIR)/tut/tut.html $(SCRIPTS)
$(MKINFO)
$<
python-lib.info
:
python-lib.texi
$(MAKEINFO)
--footnote-style
end
--fill-column
72
\
--paragraph-indent
0
$<
clean
:
clean
:
rm
-f
*
~
*
.texi
rm
-f
*
.texi
~
*
.texi
clobber
:
clean
clobber
:
clean
rm
-f
*
.texi python-???.info python-???.info-[0-9]
*
rm
-f
*
.texi python-
*
.info python-
*
.info-[0-9]
*
# The HTML files are dependent on the .aux files, which are dependent on the
# LaTeX source documents. This makes sure we can build info files from a
# "clean" tree:
$(HTMLDIR)/api/api.html
:
$(PAPERDIR)/api.aux $(BUILDINDEX)
(
cd
$(TOPDIR)
;
$(MAKE)
htmlapi
)
$(HTMLDIR)/ext/ext.html
:
$(PAPERDIR)/ext.aux
(
cd
$(TOPDIR)
;
$(MAKE)
htmlext
)
$(HTMLDIR)/lib/lib.html
:
$(PAPERDIR)/lib.aux $(BUILDINDEX)
(
cd
$(TOPDIR)
;
$(MAKE)
htmllib
)
$(HTMLDIR)/mac/mac.html
:
$(MACFILES) $(BUILDINDEX)
(
cd
$(TOPDIR)
;
$(MAKE)
htmlmac
)
$(HTMLDIR)/ref/ref.html
:
$(PAPERDIR)/ref.aux $(BUILDINDEX)
(
cd
$(TOPDIR)
;
$(MAKE)
htmlref
)
$(HTMLDIR)/tut/tut.html
:
$(PAPERDIR)/tut.aux
(
cd
$(TOPDIR)
;
$(MAKE)
htmltut
)
include
../Makefile.deps
$(PAPERDIR)/api.aux
:
$(APIFILES)
(
cd
$(PAPERDIR)
;
$(MAKE)
PAPER
=
$(PAPER)
api.dvi
)
$(PAPERDIR)/ext.aux
:
$(EXTFILES)
(
cd
$(PAPERDIR)
;
$(MAKE)
PAPER
=
$(PAPER)
ext.dvi
)
$(PAPERDIR)/lib.aux
:
$(LIBFILES)
(
cd
$(PAPERDIR)
;
$(MAKE)
PAPER
=
$(PAPER)
lib.dvi
)
$(PAPERDIR)/ref.aux
:
$(REFFILES)
(
cd
$(PAPERDIR)
;
$(MAKE)
PAPER
=
$(PAPER)
ref.dvi
)
$(PAPERDIR)/tut.aux
:
$(TUTFILES)
(
cd
$(PAPERDIR)
;
$(MAKE)
PAPER
=
$(PAPER)
tut.dvi
)
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