diff options
| author | Eli Zaretskii | 1997-11-20 16:23:24 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 1997-11-20 16:23:24 +0000 |
| commit | 9830885fafc4eb74e70b955fa69173653bd8ef72 (patch) | |
| tree | db31ad7fc7bddc42b68fc62ae567d4772563cafa | |
| parent | 7777d03b3441c5787cc100163f7b44f5c846cc68 (diff) | |
| download | emacs-9830885fafc4eb74e70b955fa69173653bd8ef72.tar.gz emacs-9830885fafc4eb74e70b955fa69173653bd8ef72.zip | |
(man): New target to build the manual.
(all): Add the man dependency.
(install): Change bin\\nul to bin\nul.
| -rw-r--r-- | msdos/mainmake.v2 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 57d2ec17744..d63fc1d8dfd 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | # Generate a full pathname of the top-level installation directory | 32 | # Generate a full pathname of the top-level installation directory |
| 33 | topdir := $(subst \,/,$(shell cd)) | 33 | topdir := $(subst \,/,$(shell cd)) |
| 34 | 34 | ||
| 35 | all: lib-src src | 35 | all: lib-src src man |
| 36 | 36 | ||
| 37 | lib-src: FRC | 37 | lib-src: FRC |
| 38 | cd lib-src | 38 | cd lib-src |
| @@ -54,8 +54,13 @@ src: FRC | |||
| 54 | rm -f gdb.tmp gdb.sed | 54 | rm -f gdb.tmp gdb.sed |
| 55 | cd .. | 55 | cd .. |
| 56 | 56 | ||
| 57 | man: FRC | ||
| 58 | cd man | ||
| 59 | $(MAKE) | ||
| 60 | cd .. | ||
| 61 | |||
| 57 | install: all | 62 | install: all |
| 58 | if not exist bin\\nul md bin | 63 | if not exist bin\nul md bin |
| 59 | cd lib-src | 64 | cd lib-src |
| 60 | if exist hexl.exe mv -f hexl.exe ../bin | 65 | if exist hexl.exe mv -f hexl.exe ../bin |
| 61 | if exist etags.exe mv -f etags.exe ../bin | 66 | if exist etags.exe mv -f etags.exe ../bin |