summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2004-05-03 13:51:23 +0000
committerJason Rumney <jasonr@gnu.org>2004-05-03 13:51:23 +0000
commit3bcda55b803060405500b11cc9fcb04135c5d7d3 (patch)
tree674c439f1883686fecc817026f7c3538668a7503 /nt
parent253add4c62d04b3daa3b02c186a22f863f401eea (diff)
downloademacs-3bcda55b803060405500b11cc9fcb04135c5d7d3.tar.gz
(info-gmake, info-nmake): New targets.
(info): Use them.
Diffstat (limited to 'nt')
-rw-r--r--nt/makefile.w32-in17
1 files changed, 13 insertions, 4 deletions
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in
index 52455a0a2d8..4f619b3f2e3 100644
--- a/nt/makefile.w32-in
+++ b/nt/makefile.w32-in
@@ -217,11 +217,20 @@ force-info:
# Note that man/makefile knows how to
# put the info files in $(infodir),
# so we can do ok running make in the build dir.
-info: force-info
- (cd ..\man && $(MAKE) $(MFLAGS) info)
- (cd ..\lispref && $(MAKE) $(MFLAGS) info)
- (cd ..\lispintro && $(MAKE) $(MFLAGS) info)
+info: force-info info-$(MAKETYPE)
+info-nmake:
+ cd ..\man
+ $(MAKE) $(MFLAGS) info
+ cd ..\lispref
+ $(MAKE) $(MFLAGS) info
+ cd ..\lispintro
+ $(MAKE) $(MFLAGS) info
+
+info-gmake:
+ $(MAKE) $(MFLAGS) -C ../man info
+ $(MAKE) $(MFLAGS) -C ../lispref info
+ $(MAKE) $(MFLAGS) -C ../lispintro info
#
# Maintenance
#