diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-04-11 07:16:13 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-04-11 07:16:13 +0000 |
commit | dc7285149fc641e3f171c478945aefa499864d2a (patch) | |
tree | ba8145f9da87b4c9898f0f5bef7887c2331d56cc /nt | |
parent | dcec69ee9923ea6cc6ac8ab9b5e9a0b9224c2571 (diff) | |
download | emacs-dc7285149fc641e3f171c478945aefa499864d2a.tar.gz |
(bootstrap-nmake, bootstrap-gmake): Make DOC after compiling .el files.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 5 | ||||
-rw-r--r-- | nt/makefile.w32-in | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 2e0a20b6db5..a9893bbf59b 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2002-04-10 Juanma Barranquero <lektu@terra.es> + + * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make DOC + after compiling .el files. + 2002-03-20 Jason Rumney <jasonr@gnu.org> * inc/sys/socket.h (sys_setsockopt, sys_listen, sys_getsockname) diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 47787bae09e..a74cfcc7efd 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -113,21 +113,24 @@ bootstrap-nmake: cd ..\src
$(MAKE) $(MFLAGS) clean
cd ..\lib-src
- $(MAKE) $(MFLAGS) clean DOC
+ $(MAKE) $(MFLAGS) clean
cd ..\src
$(MAKE) $(MFLAGS) bootstrap
$(MAKE) $(MFLAGS) bootstrap-clean
cd ..\lisp
$(MAKE) $(MFLAGS) bootstrap
+ cd ..\lib-src
+ $(MAKE) $(MFLAGS) DOC
cd ..\nt
bootstrap-gmake:
$(MAKE) $(MFLAGS) -C ../lisp bootstrap-clean
$(MAKE) $(MFLAGS) -C ../src clean
- $(MAKE) $(MFLAGS) -C ../lib-src clean DOC
+ $(MAKE) $(MFLAGS) -C ../lib-src clean
$(MAKE) $(MFLAGS) -C ../src bootstrap
$(MAKE) $(MFLAGS) -C ../src bootstrap-clean
$(MAKE) $(MFLAGS) -C ../lisp bootstrap
+ $(MAKE) $(MFLAGS) -C ../lib-src DOC
bootstrap-clean: bootstrap-clean-$(MAKETYPE)
|