diff options
| author | Geoff Voelker | 1996-03-28 04:39:51 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-03-28 04:39:51 +0000 |
| commit | 2e17c871e3359380613cbe82ec7cf51a040b6865 (patch) | |
| tree | eda83d50142a4cc3360c3547ee7cd245c289d3f8 /lib-src/makefile.nt | |
| parent | 1afb7be2926786b437e11d45c0301f909ba07f37 (diff) | |
| download | emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.zip | |
Change uses of del to $(DEL).
Diffstat (limited to 'lib-src/makefile.nt')
| -rw-r--r-- | lib-src/makefile.nt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index 5e926d6401d..5aa73e50f0f 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt | |||
| @@ -92,7 +92,7 @@ $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) | |||
| 92 | $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) | 92 | $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
| 93 | 93 | ||
| 94 | ctags.c: etags.c | 94 | ctags.c: etags.c |
| 95 | - del ctags.c | 95 | - $(DEL) ctags.c |
| 96 | copy etags.c ctags.c | 96 | copy etags.c ctags.c |
| 97 | 97 | ||
| 98 | $(BLD)\ctags.obj: ctags.c | 98 | $(BLD)\ctags.obj: ctags.c |
| @@ -164,7 +164,7 @@ lisp= \ | |||
| 164 | 164 | ||
| 165 | DOC = DOC | 165 | DOC = DOC |
| 166 | $(DOC): $(BLD)\make-docfile.exe | 166 | $(DOC): $(BLD)\make-docfile.exe |
| 167 | - del $(DOC) | 167 | - $(DEL) $(DOC) |
| 168 | $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) | 168 | $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
| 169 | $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) | 169 | $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) |
| 170 | $(CP) $(DOC) ..\etc\DOC-X | 170 | $(CP) $(DOC) ..\etc\DOC-X |
| @@ -199,10 +199,9 @@ install: $(INSTALL_FILES) | |||
| 199 | # | 199 | # |
| 200 | # Maintenance | 200 | # Maintenance |
| 201 | # | 201 | # |
| 202 | clean:; - del *~ *.pdb | 202 | clean:; - $(DEL) *~ *.pdb DOC* |
| 203 | - $(DEL_TREE) deleted | 203 | - $(DEL_TREE) deleted |
| 204 | - $(DEL_TREE) obj | 204 | - $(DEL_TREE) obj |
| 205 | - del DOC* | ||
| 206 | 205 | ||
| 207 | # | 206 | # |
| 208 | # Headers we would preprocess if we could. | 207 | # Headers we would preprocess if we could. |