Use $(RM) instead of rm -f

git-svn-id: svn://svn.cc65.org/cc65/trunk@2402 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-08-20 18:05:44 +00:00
parent 733614bdbf
commit 79edfdd0df
10 changed files with 20 additions and 20 deletions

View File

@@ -55,10 +55,10 @@ $(LIB): $(OBJS)
$(AR) rs $(LIB) $?
clean:
rm -f *~ core *.map
$(RM) *~ core *.map
zap: clean
rm -f *.o $(LIB) .depend
$(RM) *.o $(LIB) .depend
# ------------------------------------------------------------------------------
# Make the dependencies