diff options
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 |