aboutsummaryrefslogtreecommitdiffstats
path: root/nt/makefile.nt
diff options
context:
space:
mode:
authorGeoff Voelker1996-03-28 04:39:51 +0000
committerGeoff Voelker1996-03-28 04:39:51 +0000
commit2e17c871e3359380613cbe82ec7cf51a040b6865 (patch)
treeeda83d50142a4cc3360c3547ee7cd245c289d3f8 /nt/makefile.nt
parent1afb7be2926786b437e11d45c0301f909ba07f37 (diff)
downloademacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz
emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.zip
Change uses of del to $(DEL).
Diffstat (limited to 'nt/makefile.nt')
-rw-r--r--nt/makefile.nt31
1 files changed, 15 insertions, 16 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt
index a540238820a..42567d61ce4 100644
--- a/nt/makefile.nt
+++ b/nt/makefile.nt
@@ -72,12 +72,12 @@ install: all emacs.bat
72 cd ..\nt 72 cd ..\nt
73 - $(CP) emacs.bat $(INSTALL_DIR)\bin 73 - $(CP) emacs.bat $(INSTALL_DIR)\bin
74 - $(ADDPM) $(INSTALL_DIR) 74 - $(ADDPM) $(INSTALL_DIR)
75 - del ..\same-dir.tst 75 - $(DEL) ..\same-dir.tst
76 - del $(INSTALL_DIR)\same-dir.tst 76 - $(DEL) $(INSTALL_DIR)\same-dir.tst
77 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst 77 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
78 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install 78 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
79 - del ..\same-dir.tst 79 - $(DEL) ..\same-dir.tst
80 - del $(INSTALL_DIR)\same-dir.tst 80 - $(DEL) $(INSTALL_DIR)\same-dir.tst
81 81
82# 82#
83# This installs executables from ..\bin into the installation directory 83# This installs executables from ..\bin into the installation directory
@@ -88,19 +88,19 @@ fast_install:
88 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc 88 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
89 - mkdir $(INSTALL_DIR)\bin 89 - mkdir $(INSTALL_DIR)\bin
90 - $(CP) emacs.bat $(INSTALL_DIR)\bin 90 - $(CP) emacs.bat $(INSTALL_DIR)\bin
91 - del ..\same-dir.tst 91 - $(DEL) ..\same-dir.tst
92 - del $(INSTALL_DIR)\same-dir.tst 92 - $(DEL) $(INSTALL_DIR)\same-dir.tst
93 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst 93 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
94 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin 94 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
95 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin 95 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
96 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin 96 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
97 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install 97 if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
98 - del ..\same-dir.tst 98 - $(DEL) ..\same-dir.tst
99 - del $(INSTALL_DIR)\same-dir.tst 99 - $(DEL) $(INSTALL_DIR)\same-dir.tst
100 100
101real_install: 101real_install:
102 - del ..\same-dir.tst 102 - $(DEL) ..\same-dir.tst
103 - del $(INSTALL_DIR)\same-dir.tst 103 - $(DEL) $(INSTALL_DIR)\same-dir.tst
104 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst 104 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
105 - mkdir $(INSTALL_DIR)\etc 105 - mkdir $(INSTALL_DIR)\etc
106 - mkdir $(INSTALL_DIR)\info 106 - mkdir $(INSTALL_DIR)\info
@@ -108,20 +108,19 @@ real_install:
108 - mkdir $(INSTALL_DIR)\data 108 - mkdir $(INSTALL_DIR)\data
109 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc 109 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
110 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info 110 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
111 - del ..\same-dir.tst 111 - $(DEL) ..\same-dir.tst
112 - del $(INSTALL_DIR)\same-dir.tst 112 - $(DEL) $(INSTALL_DIR)\same-dir.tst
113 113
114# 114#
115# Maintenance 115# Maintenance
116# 116#
117CLEAN_CMD = $(MAKE) -f makefile.nt clean 117CLEAN_CMD = $(MAKE) -f makefile.nt clean
118clean:; - del /s *~ *.pdb 118clean:; - $(DEL) *~ *.pdb
119 - $(DEL_TREE) deleted 119 - $(DEL_TREE) deleted
120 - $(DEL_TREE) obj 120 - $(DEL_TREE) obj
121 - $(DEL_TREE) ..\bin 121 - $(DEL_TREE) ..\bin
122 - del ..\etc\DOC 122 - $(DEL) ..\etc\DOC ..\etc\DOC-X
123 - del ..\etc\DOC-X 123 - $(DEL) emacs.bat
124 - del emacs.bat
125 cd ..\lib-src 124 cd ..\lib-src
126 $(CLEAN_CMD) 125 $(CLEAN_CMD)
127 cd ..\src 126 cd ..\src