diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-11 05:27:46 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-11 05:27:46 +0000 |
commit | 07b0b2641c9be0c554a06fbe7bd56338d9937cfc (patch) | |
tree | b08f51e16751dc06e36ed8ec90d24226ca32c2c0 /nt | |
parent | 891f47e479da23a0e1940e5e54f4be01720dfd6f (diff) | |
download | emacs-07b0b2641c9be0c554a06fbe7bd56338d9937cfc.tar.gz |
(debug.bat): New target.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/makefile.nt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt index 6fcd1848c95..b25068448f1 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt @@ -84,11 +84,17 @@ emacs.bat: emacs.bat.in echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat type emacs.bat.in >> emacs.bat +debug.bat: debug.bat.in + echo @echo off > debug.bat + echo REM !!! Warning: This file automatically generated !!! >> debug.bat + echo set emacs_dir=$(INSTALL_DIR)>> debug.bat + type debug.bat.in >> debug.bat + # # Build and install emacs in INSTALL_DIR # INSTALL_CMD = $(MAKE) -f makefile.nt install -install: all emacs.bat +install: all emacs.bat debug.bat - mkdir $(INSTALL_DIR) cd ..\lib-src $(INSTALL_CMD) @@ -98,6 +104,7 @@ install: all emacs.bat $(INSTALL_CMD) cd ..\nt - $(CP) emacs.bat $(INSTALL_DIR)\bin + - $(CP) debug.bat $(INSTALL_DIR)\bin - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin @@ -118,6 +125,7 @@ fast_install: $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc - mkdir $(INSTALL_DIR)\bin - $(CP) emacs.bat $(INSTALL_DIR)\bin + - $(CP) debug.bat $(INSTALL_DIR)\bin - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin - $(DEL) ..\same-dir.tst @@ -154,6 +162,7 @@ clean:; - $(DEL) *~ *.pdb - $(DEL_TREE) ..\bin - $(DEL) ..\etc\DOC ..\etc\DOC-X - $(DEL) emacs.bat + - $(DEL) debug.bat cd ..\lib-src $(CLEAN_CMD) cd ..\src |