1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(debug.bat): New target.

This commit is contained in:
Geoff Voelker 1997-09-11 05:27:46 +00:00
parent 891f47e479
commit 07b0b2641c

View File

@ -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