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
6085e32a
Kaydet (Commit)
6085e32a
authored
Ara 26, 1993
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Alpha 1.0.0
üst
1dfec14f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
7 deletions
+16
-7
Makefile.in
Makefile.in
+8
-1
README
README
+6
-4
configure
configure
+1
-1
configure.in
configure.in
+1
-1
No files found.
Makefile.in
Dosyayı görüntüle @
6085e32a
MAKE
=
make
SUBDIRS
=
Parser Grammar Objects Python
SUBDIRSTOO
=
Include Extensions readline
DISTFILES
=
README Makefile configure configure.in
DIST
=
$(DISTFILES)
$(SUBDIRS)
$(SUBDIRSTOO)
all
:
config.status
for
i
in
$(SUBDIRS)
;
do
(
echo
$$
i
;
cd
$$
i
;
$(MAKE)
all
)
;
done
localclean
:
-
rm
-f
core
*
~
[
@,#]
*
*
.old
*
.orig
*
.rej
-
(
cd
Py
;
rm
-f
core
*
~
[
@,#]
*
*
.old
*
.orig
*
.rej
)
-
(
cd
Include
;
rm
-f
core
*
~
[
@,#]
*
*
.old
*
.orig
*
.rej
)
clean
:
localclean
-
for
i
in
$(SUBDIRS)
;
do
\
...
...
@@ -36,3 +39,7 @@ config.status: configure
configure
:
configure.in
autoconf
tar
:
dist.tar.Z
dist.tar.Z
:
$(DIST)
tar
cf -
$(DIST)
| compress
>
dist.tar.Z
README
Dosyayı görüntüle @
6085e32a
...
...
@@ -25,10 +25,12 @@ done so.)
make
This will recursively run Make in each of the Parser, Objects and
Python subdirectories. In Parser it builds an executable "pgen" and a
library libParser.a. In Objects it builds a library libObjects.a. In
Python it builds a library libPython.a and an executable "python".
This will recursively run Make in each of the Parser, Grammar, Objects
and Python subdirectories. In Parser it builds an executable "pgen"
and a library libParser.a. In Grammar it runs Parser/pgen to generate
graminit.[ch] which are copied to Includes and Python, respectively.
In Objects it builds a library libObjects.a. In Python it builds a
library libPython.a and an executable "python".
(3) Test the resulting executable:
...
...
configure
Dosyayı görüntüle @
6085e32a
...
...
@@ -96,7 +96,7 @@ compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
# A filename unique to this package, relative to the directory that
# configure is in, which we can look for to find out if srcdir is correct.
unique_file
=
Py
/object.h
unique_file
=
Include
/object.h
# Find the source files, if location was not specified.
if
test
-z
"
$srcdir
"
;
then
...
...
configure.in
Dosyayı görüntüle @
6085e32a
dnl Process this file with autoconf to produce a configure script.
AC_INIT(
Py
/object.h)
AC_INIT(
Include
/object.h)
# checks for alternative programs
AC_PROG_CC
...
...
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