diff options
author | Eli Zaretskii <eliz@gnu.org> | 2012-04-10 22:03:32 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2012-04-10 22:03:32 +0300 |
commit | 7dd02dc7c4f5799fec81e742dce3e176ca5709d8 (patch) | |
tree | 978205def936b8e17396b4f0154eb08dafd3ff3b /nt | |
parent | c9279dad0b22996b74a959ede6939fe4f2c3357c (diff) | |
download | emacs-7dd02dc7c4f5799fec81e742dce3e176ca5709d8.tar.gz |
Better parallelism on MS-Windows for "make info".
nt/makefile.w32-in (emacs, misc, lispref, lispintro): New targets,
each runs makeinfo in its own subdirectory of 'doc'.
(info-gmake): Depend on these new targets.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 6 | ||||
-rw-r--r-- | nt/makefile.w32-in | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 349a43fe692..c7b94e64083 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,9 @@ +2012-04-10 Eli Zaretskii <eliz@gnu.org> + + * makefile.w32-in (emacs, misc, lispref, lispintro): New targets, + each runs makeinfo in its own subdirectory of 'doc'. + (info-gmake): Depend on these new targets. + 2012-04-07 Glenn Morris <rgm@gnu.org> * config.nt, makefile.w32-in, emacs.rc, emacsclient.rc: diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index f090849e6a9..fcf57e8046d 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -307,11 +307,11 @@ info-nmake: $(MAKE) $(MFLAGS) info cd $(MAKEDIR) -info-gmake: - $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/emacs info - $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/misc info - $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispref info - $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/lispintro info +info-gmake: emacs misc lispref lispintro + +emacs misc lispref lispintro: + $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../doc/$@ info + # # Maintenance # |