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
18821823
Commit
18821823
authored
Jan 27, 2001
by
Neil Schemenauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix buildno dependencies (I hope).
- Change one last EXE to EXEEXT.
parent
0c6141f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
Makefile.pre.in
Makefile.pre.in
+17
-9
No files found.
Makefile.pre.in
View file @
18821823
...
...
@@ -161,8 +161,7 @@ PYTHON= python$(EXEEXT)
MODULE_OBJS
=
\
Modules/config.o
\
Modules/getpath.o
\
Modules/main.o
\
Modules/getbuildinfo.o
Modules/main.o
# Used of signalmodule.o is not available
SIGNAL_OBJS
=
@SIGNAL_OBJS@
...
...
@@ -268,6 +267,7 @@ OBJECT_OBJS= \
##########################################################################
# objects that get linked into the Python library
LIBRARY_OBJS
=
\
Modules/getbuildinfo.o
\
$(PARSER_OBJS)
\
$(OBJECT_OBJS)
\
$(PYTHON_OBJS)
\
...
...
@@ -275,7 +275,6 @@ LIBRARY_OBJS= \
$(SIGNAL_OBJS)
\
$(MODOBJS)
#########################################################################
# Rules
...
...
@@ -284,14 +283,9 @@ all: $(PYTHON) sharedmods
# Build the interpreter
$(PYTHON)
:
$(MAINOBJ) $(LDLIBRARY)
expr
`
cat
buildno
`
+ 1
>
buildno1
mv
-f
buildno1 buildno
$(LINKCC)
$(LDFLAGS)
$(LINKFORSHARED)
-o
$@
$(MAINOBJ)
\
$(LDLIBRARY)
$(LIBS)
$(MODLIBS)
$(SYSLIBS)
$(LDLAST)
buildno
:
echo
1
>
buildno
platform
:
$(PYTHON)
./
$(PYTHON)
-c
'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]'
>
platform
...
...
@@ -300,10 +294,24 @@ platform: $(PYTHON)
sharedmods
:
$(PYTHON)
./
$(PYTHON)
$(srcdir)
/setup.py build
# buildno should really depend on something like LIBRARY_SRC
buildno
:
$(PARSER_OBJS)
\
$(OBJECT_OBJS)
\
$(PYTHON_OBJS)
\
$(MODULE_OBJS)
\
$(SIGNAL_OBJS)
\
$(MODOBJS)
\
$(srcdir)/Modules/getbuildinfo.c
if
test
-f
buildno
;
then
\
expr
`
cat
buildno
`
+ 1
>
buildno1
;
\
mv
-f
buildno1 buildno
;
\
else
echo
1
>
buildno
;
fi
# Build static library
$(LIBRARY)
:
$(LIBRARY_OBJS)
-
rm
-f
$@
# avoid long command lines, same as LIBRARY_OBJS
$(AR)
cr
$@
Modules/getbuildinfo.o
$(AR)
cr
$@
$(PARSER_OBJS)
$(AR)
cr
$@
$(OBJECT_OBJS)
$(AR)
cr
$@
$(PYTHON_OBJS)
...
...
@@ -684,7 +692,7 @@ libainstall: all
# Install the dynamically loadable modules
# This goes into $(exec_prefix)
sharedinstall
:
./python
$(EXE)
$(srcdir)
/setup.py
install
\
./python
$(EXE
EXT
)
$(srcdir)
/setup.py
install
\
--install-platlib
=
$(DESTSHARED)
# Build the toplevel Makefile
...
...
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