]> granicus.if.org Git - python/commitdiff
Adapted to new build procedure (hopefully correct -- can't test it!).
authorGuido van Rossum <guido@python.org>
Sat, 19 Jul 1997 19:54:25 +0000 (19:54 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 19 Jul 1997 19:54:25 +0000 (19:54 +0000)
Modules/defmakexp_aix

index 23895d2d3737ac7ae620a7fd814a88fb2f0705a8..675602c52f8384b60860abc68d25ecaf402875f5 100755 (executable)
@@ -9,8 +9,8 @@
 #              for AIX platforms which has to be included in the Modules
 #              directory of the python source tree.
 #              It contains all global symbols defined in the following files:
-#                      a) main.o config.o getpath.o
-#                      b) libModules.a libPython.a libObjects.a libParser.a
+#                      a) python.o
+#                      b) ../libpython1.5.a
 #
 #              The script should be run after a new unpack, configure & make
 #              of the python release, without any options nor changes to
@@ -41,15 +41,15 @@ fi
 #
 # Variables
 #
+VERSION=1.5
 ROOTDIR=$1
 MODSDIR=$ROOTDIR/Modules
 PYTHDIR=$ROOTDIR/Python
 OBJSDIR=$ROOTDIR/Objects
 PARSDIR=$ROOTDIR/Parser
 
-OBJFILES="$MODSDIR/main.o $MODSDIR/config.o $MODSDIR/getpath.o"
-LIBFILES="$MODSDIR/libModules.a $OBJSDIR/libObjects.a $PARSDIR/libParser.a"
-LIBFILES="$LIBFILES $PYTHDIR/libPython.a"
+OBJFILES="$MODSDIR/python.o"
+LIBFILES="$ROOTDIR/libpython$(VERSION).a"
 ALLFILES="$OBJFILES $LIBFILES"
 
 #