diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-22 14:56:24 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-22 14:56:24 +0000 |
commit | ffc56908c20aa9f18d820cb23acb3be3e9fd5d49 (patch) | |
tree | 29286250e9de2732a29b0d654e4a0bc0b84059e4 | |
parent | c7ba36264b38d290573d53efc3c70c963f82da3e (diff) | |
download | emacs-ffc56908c20aa9f18d820cb23acb3be3e9fd5d49.tar.gz |
(fast_install): Bring commands up-to-date, and fix typo.
-rw-r--r-- | nt/makefile.nt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt index 17f92b07fee..35fc32fee64 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt @@ -155,14 +155,17 @@ fast_install: batch_files $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc - mkdir $(INSTALL_DIR)\bin - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin + - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin + - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin + - $(CP) ..\lib-src\fns-*.el $(INSTALL_DIR)\bin - $(DEL) ..\same-dir.tst - $(DEL) $(INSTALL_DIR)\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\same-dir.tst if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin - if not exist ..\same-dir.tst nmake -f $(MAKE) real_install + if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install - $(DEL) ..\same-dir.tst - $(DEL) $(INSTALL_DIR)\same-dir.tst |