diff options
| -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
|
