diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-01-29 15:41:34 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-01-29 15:41:34 +0200 |
commit | 1e338cfca817359985c80482b77723fe48aab953 (patch) | |
tree | 8f77bf9374c0b5ce8b9e393d4e74ebee4e5a0aca /nt | |
parent | f915f0f7c8a35ecc5ca95e99f5bf4286aafa3d05 (diff) | |
download | emacs-1e338cfca817359985c80482b77723fe48aab953.tar.gz |
Fix the bootstrap on MS-Windows.
makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Fix the bootstrap.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 1 | ||||
-rw-r--r-- | nt/makefile.w32-in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index d7301e8ff23..355c7e83dab 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -7,6 +7,7 @@ (cleanall-other-dirs-gmake, distclean-other-dirs-nmake) (distclean-other-dirs-gmake, maintainer-clean-other-dirs-nmake) (maintainer-clean-other-dirs-gmake): Recurse into ../lib as well. + (bootstrap-nmake, bootstrap-gmake): Fix the bootstrap. * configure.bat: Create lib/makefile. diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 0ce8a5a052e..28ee8b6e09c 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -162,7 +162,7 @@ bootstrap-nmake: addsection cmdproxy cd ..\lib-src
$(MAKE) $(MFLAGS) clean
cd ..\lib
- $(MAKE) $(MFLAGS) clean
+ $(MAKE) $(MFLAGS) clean all
cd ..\src
$(MAKE) $(MFLAGS) bootstrap
$(MAKE) $(MFLAGS) bootstrap-clean
@@ -178,7 +178,7 @@ bootstrap-gmake: addsection cmdproxy $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp bootstrap-clean
$(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src clean
$(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib-src clean
- $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib clean
+ $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lib clean all
$(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap
$(MAKE) $(MFLAGS) $(XMFLAGS) -C ../src bootstrap-clean
$(CP) $(BLD)/cmdproxy.exe ../bin
|