diff options
| -rw-r--r-- | nt/makefile.w32-in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 151be725258..1f1acccb6f0 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in | |||
| @@ -214,6 +214,15 @@ install-other-dirs-gmake: | |||
| 214 | $(MAKE) $(MFLAGS) -C ../lisp install | 214 | $(MAKE) $(MFLAGS) -C ../lisp install |
| 215 | $(MAKE) $(MFLAGS) -C ../leim install | 215 | $(MAKE) $(MFLAGS) -C ../leim install |
| 216 | 216 | ||
| 217 | force-info: | ||
| 218 | # Note that man/makefile knows how to | ||
| 219 | # put the info files in $(infodir), | ||
| 220 | # so we can do ok running make in the build dir. | ||
| 221 | info: force-info | ||
| 222 | (cd ..\man && $(MAKE) $(MFLAGS) info) | ||
| 223 | (cd ..\lispref && $(MAKE) $(MFLAGS) info) | ||
| 224 | (cd ..\lispintro && $(MAKE) $(MFLAGS) info) | ||
| 225 | |||
| 217 | # | 226 | # |
| 218 | # Maintenance | 227 | # Maintenance |
| 219 | # | 228 | # |
| @@ -229,8 +238,14 @@ clean-other-dirs-nmake: | |||
| 229 | $(MAKE) $(MFLAGS) clean | 238 | $(MAKE) $(MFLAGS) clean |
| 230 | cd ..\lisp | 239 | cd ..\lisp |
| 231 | $(MAKE) $(MFLAGS) clean | 240 | $(MAKE) $(MFLAGS) clean |
| 241 | cd ..\lispintro | ||
| 242 | $(MAKE) $(MFLAGS) clean | ||
| 243 | cd ..\lispref | ||
| 244 | $(MAKE) $(MFLAGS) clean | ||
| 232 | cd ..\leim | 245 | cd ..\leim |
| 233 | $(MAKE) $(MFLAGS) clean | 246 | $(MAKE) $(MFLAGS) clean |
| 247 | cd ..\man | ||
| 248 | $(MAKE) $(MFLAGS) clean | ||
| 234 | cd ..\nt | 249 | cd ..\nt |
| 235 | 250 | ||
| 236 | clean-other-dirs-gmake: | 251 | clean-other-dirs-gmake: |