Adapted to new build procedure (hopefully correct -- can't test it!).
This commit is contained in:
parent
534ac094f9
commit
4c125700d1
|
@ -9,8 +9,8 @@
|
||||||
# for AIX platforms which has to be included in the Modules
|
# for AIX platforms which has to be included in the Modules
|
||||||
# directory of the python source tree.
|
# directory of the python source tree.
|
||||||
# It contains all global symbols defined in the following files:
|
# It contains all global symbols defined in the following files:
|
||||||
# a) main.o config.o getpath.o
|
# a) python.o
|
||||||
# b) libModules.a libPython.a libObjects.a libParser.a
|
# b) ../libpython1.5.a
|
||||||
#
|
#
|
||||||
# The script should be run after a new unpack, configure & make
|
# The script should be run after a new unpack, configure & make
|
||||||
# of the python release, without any options nor changes to
|
# of the python release, without any options nor changes to
|
||||||
|
@ -41,15 +41,15 @@ fi
|
||||||
#
|
#
|
||||||
# Variables
|
# Variables
|
||||||
#
|
#
|
||||||
|
VERSION=1.5
|
||||||
ROOTDIR=$1
|
ROOTDIR=$1
|
||||||
MODSDIR=$ROOTDIR/Modules
|
MODSDIR=$ROOTDIR/Modules
|
||||||
PYTHDIR=$ROOTDIR/Python
|
PYTHDIR=$ROOTDIR/Python
|
||||||
OBJSDIR=$ROOTDIR/Objects
|
OBJSDIR=$ROOTDIR/Objects
|
||||||
PARSDIR=$ROOTDIR/Parser
|
PARSDIR=$ROOTDIR/Parser
|
||||||
|
|
||||||
OBJFILES="$MODSDIR/main.o $MODSDIR/config.o $MODSDIR/getpath.o"
|
OBJFILES="$MODSDIR/python.o"
|
||||||
LIBFILES="$MODSDIR/libModules.a $OBJSDIR/libObjects.a $PARSDIR/libParser.a"
|
LIBFILES="$ROOTDIR/libpython$(VERSION).a"
|
||||||
LIBFILES="$LIBFILES $PYTHDIR/libPython.a"
|
|
||||||
ALLFILES="$OBJFILES $LIBFILES"
|
ALLFILES="$OBJFILES $LIBFILES"
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue