diff options
author | Guido van Rossum <guido@python.org> | 1997-08-18 14:23:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-18 14:23:13 (GMT) |
commit | 79fa8b0abe5e5e114a5e655f60535adb88d0d642 (patch) | |
tree | 016c485f36f01a8a243dbb12f68238dbee38b5f3 /Modules/Makefile.pre.in | |
parent | 506ef9ec817c3f5b3dfca03e563048b4a8b0e61f (diff) | |
download | cpython-79fa8b0abe5e5e114a5e655f60535adb88d0d642.zip cpython-79fa8b0abe5e5e114a5e655f60535adb88d0d642.tar.gz cpython-79fa8b0abe5e5e114a5e655f60535adb88d0d642.tar.bz2 |
When making all, don't make sharedmods. That's now called separately
from the toplevel Makefile. (For AIX, but doesn't hurt elsewhere.)
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r-- | Modules/Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 213c74a..b4a4a43 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -101,7 +101,7 @@ LIBRARY= ../libpython$(VERSION).a # === Rules === -all: $(OBJS) sharedmods +all: $(OBJS) # Targets for Jim Fulton's extension Makefiles -- are these still needed? asharedmodule: $(ASHAREDMODULE)$(SO) |