aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1997-09-11 05:27:46 +0000
committerGeoff Voelker1997-09-11 05:27:46 +0000
commit07b0b2641c9be0c554a06fbe7bd56338d9937cfc (patch)
treeb08f51e16751dc06e36ed8ec90d24226ca32c2c0
parent891f47e479da23a0e1940e5e54f4be01720dfd6f (diff)
downloademacs-07b0b2641c9be0c554a06fbe7bd56338d9937cfc.tar.gz
emacs-07b0b2641c9be0c554a06fbe7bd56338d9937cfc.zip
(debug.bat): New target.
-rw-r--r--nt/makefile.nt11
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
84 echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat 84 echo set emacs_dir=$(INSTALL_DIR)>> emacs.bat
85 type emacs.bat.in >> emacs.bat 85 type emacs.bat.in >> emacs.bat
86 86
87debug.bat: debug.bat.in
88 echo @echo off > debug.bat
89 echo REM !!! Warning: This file automatically generated !!! >> debug.bat
90 echo set emacs_dir=$(INSTALL_DIR)>> debug.bat
91 type debug.bat.in >> debug.bat
92
87# 93#
88# Build and install emacs in INSTALL_DIR 94# Build and install emacs in INSTALL_DIR
89# 95#
90INSTALL_CMD = $(MAKE) -f makefile.nt install 96INSTALL_CMD = $(MAKE) -f makefile.nt install
91install: all emacs.bat 97install: all emacs.bat debug.bat
92 - mkdir $(INSTALL_DIR) 98 - mkdir $(INSTALL_DIR)
93 cd ..\lib-src 99 cd ..\lib-src
94 $(INSTALL_CMD) 100 $(INSTALL_CMD)
@@ -98,6 +104,7 @@ install: all emacs.bat
98 $(INSTALL_CMD) 104 $(INSTALL_CMD)
99 cd ..\nt 105 cd ..\nt
100 - $(CP) emacs.bat $(INSTALL_DIR)\bin 106 - $(CP) emacs.bat $(INSTALL_DIR)\bin
107 - $(CP) debug.bat $(INSTALL_DIR)\bin
101 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin 108 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
102 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin 109 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
103 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin 110 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
@@ -118,6 +125,7 @@ fast_install:
118 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc 125 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
119 - mkdir $(INSTALL_DIR)\bin 126 - mkdir $(INSTALL_DIR)\bin
120 - $(CP) emacs.bat $(INSTALL_DIR)\bin 127 - $(CP) emacs.bat $(INSTALL_DIR)\bin
128 - $(CP) debug.bat $(INSTALL_DIR)\bin
121 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin 129 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
122 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin 130 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
123 - $(DEL) ..\same-dir.tst 131 - $(DEL) ..\same-dir.tst
@@ -154,6 +162,7 @@ clean:; - $(DEL) *~ *.pdb
154 - $(DEL_TREE) ..\bin 162 - $(DEL_TREE) ..\bin
155 - $(DEL) ..\etc\DOC ..\etc\DOC-X 163 - $(DEL) ..\etc\DOC ..\etc\DOC-X
156 - $(DEL) emacs.bat 164 - $(DEL) emacs.bat
165 - $(DEL) debug.bat
157 cd ..\lib-src 166 cd ..\lib-src
158 $(CLEAN_CMD) 167 $(CLEAN_CMD)
159 cd ..\src 168 cd ..\src