Change the order in which things are built -- build the shared modules

after the main interpreter.  Needed for AIX.
This commit is contained in:
Guido van Rossum 1997-08-18 14:22:24 +00:00
parent 0393e18b18
commit 506ef9ec81
1 changed files with 7 additions and 1 deletions

View File

@ -147,7 +147,7 @@ CFLAGS= $(OPT) -I. $(DEFS)
LIBRARY= libpython$(VERSION).a
# Default target
all: $(LIBRARY) python
all: $(LIBRARY) python sharedmods
# Build the interpreter
python: $(LIBRARY) buildno
@ -164,6 +164,12 @@ python: $(LIBRARY) buildno
buildno:
echo 0 >buildno
# Build the shared modules
sharedmods: python
cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
prefix="$(prefix)" exec_prefix="$(exec_prefix)" \
sharedmods
# Build the library
$(LIBRARY): $(SUBDIRS)
if test ! -f $(LIBRARY); \