Commit 1c2fb9ce authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Make the original, makesetup-based, targets for building shared modules

   available as "oldsharedmods" and "oldsharedinstall".  You'll need
   to get a copy of the full Setup.dist out of the CVS for them to
   actually do much.
parent 753a68e2
...@@ -159,9 +159,10 @@ buildno: ...@@ -159,9 +159,10 @@ buildno:
sharedmods: python$(EXE) sharedmods: python$(EXE)
./python$(EXE) $(srcdir)/setup.py build ./python$(EXE) $(srcdir)/setup.py build
# Old rules for building shared modules using makesetup # Old rules for building shared modules using makesetup
# cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \ oldsharedmods:
# prefix="$(prefix)" exec_prefix="$(exec_prefix)" \ cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
# sharedmods prefix="$(prefix)" exec_prefix="$(exec_prefix)" \
sharedmods
# Build the library # Build the library
$(LIBRARY): $(SUBDIRS) $(LIBRARY): $(SUBDIRS)
...@@ -426,17 +427,18 @@ libainstall: all ...@@ -426,17 +427,18 @@ libainstall: all
sharedinstall: sharedinstall:
./python$(EXE) $(srcdir)/setup.py install ./python$(EXE) $(srcdir)/setup.py install
# Old rules for installing shared modules built using makesetup # Old rules for installing shared modules built using makesetup
# cd Modules; $(MAKE) \ oldsharedinstall:
# OPT="$(OPT)" \ cd Modules; $(MAKE) \
# VERSION="$(VERSION)" \ OPT="$(OPT)" \
# SO="$(SO)" \ VERSION="$(VERSION)" \
# LDSHARED="$(LDSHARED)" \ SO="$(SO)" \
# CCSHARED="$(CCSHARED)" \ LDSHARED="$(LDSHARED)" \
# LINKFORSHARED="$(LINKFORSHARED)" \ CCSHARED="$(CCSHARED)" \
# DESTSHARED="$(DESTSHARED)" \ LINKFORSHARED="$(LINKFORSHARED)" \
# prefix="$(prefix)" \ DESTSHARED="$(DESTSHARED)" \
# exec_prefix="$(exec_prefix)" \ prefix="$(prefix)" \
# sharedinstall exec_prefix="$(exec_prefix)" \
sharedinstall
# Build the sub-Makefiles # Build the sub-Makefiles
Makefiles: config.status Modules/Makefile.pre Makefiles: config.status Modules/Makefile.pre
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment