consistently use DEL instead of rm in Makefiles

This commit is contained in:
Hartmut Holzgraefe
2014-08-17 21:02:24 +00:00
parent 285605b33f
commit fb87f68368
10 changed files with 27 additions and 19 deletions

View File

@ -69,13 +69,13 @@ libtee.so: $(TEEOBJ)
$(CC) $(CFLAGS) $< -o $@
clean:
rm -f $(OBJ) $(MODULES)
$(DEL) $(OBJ) $(MODULES)
tags:
ctags $(SRCS) $(HDRS)
depend:
@rm -f depend.mk
@$(DEL) depend.mk
cc -M $(CFLAGS) $(SRCS) > depend.mk
install: $(MODULES)