mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
be more careful about building Modules/Makefile.pre
This commit is contained in:
parent
19e0c26e6f
commit
d09119e889
1 changed files with 5 additions and 1 deletions
|
@ -157,12 +157,16 @@ sharedinstall:
|
||||||
sharedinstall
|
sharedinstall
|
||||||
|
|
||||||
# Build the sub-Makefiles
|
# Build the sub-Makefiles
|
||||||
Makefiles: config.status
|
Makefiles: config.status Modules/Makefile.pre
|
||||||
(cd Modules; $(MAKE) -f Makefile.pre Makefile)
|
(cd Modules; $(MAKE) -f Makefile.pre Makefile)
|
||||||
for i in . $(SUBDIRS); do \
|
for i in . $(SUBDIRS); do \
|
||||||
(echo $$i; cd $$i; $(MAKE) Makefile); \
|
(echo $$i; cd $$i; $(MAKE) Makefile); \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Build the intermediate Makefile in Modules
|
||||||
|
Modules/Makefile.pre: config.status
|
||||||
|
$(SHELL) config.status
|
||||||
|
|
||||||
# Build the toplevel Makefile
|
# Build the toplevel Makefile
|
||||||
Makefile: Makefile.in config.status
|
Makefile: Makefile.in config.status
|
||||||
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
|
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue