Mercurial > emacs
comparison lib-src/makefile.nt @ 14899:4b7b8a937a5d
Change uses of del to $(DEL).
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Thu, 28 Mar 1996 04:39:51 +0000 |
parents | badba571804f |
children | 780fe9c87106 |
comparison
equal
deleted
inserted
replaced
14898:467e9d219590 | 14899:4b7b8a937a5d |
---|---|
90 | 90 |
91 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) | 91 $(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 |
99 $(CC) $(CFLAGS) -DCTAGS -Fo$@ ctags.c | 99 $(CC) $(CFLAGS) -DCTAGS -Fo$@ ctags.c |
100 | 100 |
162 $(lispdir)\vc-hooks.elc \ | 162 $(lispdir)\vc-hooks.elc \ |
163 $(lispdir)\version.el | 163 $(lispdir)\version.el |
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 |
171 - mkdir ..\src\$(OBJDIR) | 171 - mkdir ..\src\$(OBJDIR) |
172 - mkdir ..\src\$(OBJDIR)\etc | 172 - mkdir ..\src\$(OBJDIR)\etc |
197 $(CP) $(DOC) $(INSTALL_DIR)\etc | 197 $(CP) $(DOC) $(INSTALL_DIR)\etc |
198 | 198 |
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. |
209 # | 208 # |
210 ..\src\config.h: ..\nt\$(CONFIG_H) | 209 ..\src\config.h: ..\nt\$(CONFIG_H) |