Changed rm -f to $(RM)

git-svn-id: svn://svn.cc65.org/cc65/trunk@2385 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-08-20 11:59:27 +00:00
parent 3ef773058d
commit a3109620ab
34 changed files with 44 additions and 59 deletions

View File

@@ -24,5 +24,5 @@ clean:
.PHONY: zap
zap: clean
@rm -f ../geos.lib ../geos.o
@$(RM) ../geos.lib ../geos.o

View File

@@ -16,4 +16,4 @@ S_OBJS = copydata.o memcpy.o memset.o zerobss.o
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)
@$(RM) core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)

View File

@@ -14,4 +14,4 @@ S_OBJS = cclear.o chline.o cvline.o cgetc.o clrscr.o color.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -37,4 +37,4 @@ TGIS = geos-tgi.tgi
all: $(S_OBJS) $(EMDS) $(JOYS) $(TGIS)
clean:
@rm -f *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)

View File

@@ -18,4 +18,4 @@ S_OBJS = blkalloc.o calcblksfree.o changediskdevice.o chkdkgeos.o enterturbo.o e
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -19,4 +19,4 @@ S_OBJS = dodlgbox.o rstrfrmdialogue.o\
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)
@$(RM) core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)

View File

@@ -17,4 +17,4 @@ S_OBJS = get1stdirentry.o getnxtdirentry.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -18,4 +18,4 @@ S_OBJS = drawline.o drawpoint.o framerectangle.o hlineregs.o horizontalline.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -15,4 +15,4 @@ S_OBJS = crc.o doublepop.o reuregs.o clearram.o fillram.o initram.o movedata.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -14,4 +14,4 @@ S_OBJS = domenu.o dopreviousmenu.o redomenu.o recovermenu.o recoverallmenus.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -17,4 +17,4 @@ S_OBJS = startmousemode.o clearmousemode.o mouseup.o mouseoff.o\
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -13,4 +13,4 @@ S_OBJS = processinitrestartenable.o processblock.o processfreeze.o processsleep.
all: $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@$(RM) *.~ $(S_OBJS) core

View File

@@ -16,4 +16,4 @@ S_OBJS = call.o
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)
@$(RM) core *.~ $(S_OBJS) $(C_OBJS:.o=.s) $(C_OBJS)

View File

@@ -30,4 +30,4 @@ C_OBJS = systime.o
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *.~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS) core
@$(RM) *.~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS) core