diff options
author | Guido van Rossum <guido@python.org> | 1997-12-04 00:48:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-04 00:48:27 (GMT) |
commit | a0cbb3dbae487b5cb1aef4345740725f817faf98 (patch) | |
tree | b3d584fa8c375639c27c856ab19fe40d364dd48d /Modules/Makefile.pre.in | |
parent | e612be59263f9771f89c79a89843872ae1b8f667 (diff) | |
download | cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.zip cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.tar.gz cpython-a0cbb3dbae487b5cb1aef4345740725f817faf98.tar.bz2 |
Moved the thread module to its own Setup.thread(.in) file,
which is edited by the config.status script depending on whether
--with-thread is specified or not. Also needs changes to configure(.in).
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r-- | Modules/Makefile.pre.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index ba2341a..7bc1d63 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -152,9 +152,11 @@ getpath.o: getpath.c Makefile # When the configuration changes, we remove the library, so that it # gets remade from scratch; this ensures to remove modules that are no # longer pertinent (but that were in a previous configuration). -config.c Makefile: Makefile.pre config.c.in $(MAKESETUP) Setup Setup.local +config.c Makefile: Makefile.pre config.c.in $(MAKESETUP) +config.c Makefile: Setup.thread Setup Setup.local +config.c Makefile: -rm -f $(LIBRARY) - $(SHELL) $(MAKESETUP) Setup.local Setup + $(SHELL) $(MAKESETUP) Setup.thread Setup.local Setup Setup: cp $(srcdir)/Setup.in Setup |