diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 12:15:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 12:15:07 (GMT) |
commit | 946cf890d45010c203bfba08d30d122574b4a411 (patch) | |
tree | 375bcbc80ce98de252c852e215ecabdfc6b85721 /Misc | |
parent | 5f18d6c7a0b59dec2c407f84bd3a3514f44fb551 (diff) | |
download | cpython-946cf890d45010c203bfba08d30d122574b4a411.zip cpython-946cf890d45010c203bfba08d30d122574b4a411.tar.gz cpython-946cf890d45010c203bfba08d30d122574b4a411.tar.bz2 |
Improvement suggested by Sjoerd: use $(MAKE)
in boot target and use $(srcdir)/Makefile.pre.in
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/Makefile.pre.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index 1e14e6b..3621314 100644 --- a/Misc/Makefile.pre.in +++ b/Misc/Makefile.pre.in @@ -244,10 +244,11 @@ boot: VERSION=`python -c "import sys; print sys.version[:3]"`; \ installdir=`python -c "import sys; print sys.prefix"`; \ exec_installdir=`python -c "import sys; print sys.exec_prefix"`; \ - make -f Makefile.pre.in Makefile VPATH=$(VPATH) srcdir=$(srcdir) \ + $(MAKE) -f $(srcdir)/Makefile.pre.in VPATH=$(VPATH) srcdir=$(srcdir) \ VERSION=$$VERSION \ installdir=$$installdir \ - exec_installdir=$$exec_installdir + exec_installdir=$$exec_installdir \ + Makefile # Handy target to remove intermediate files and backups clean: |