1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 02:29:32 +00:00

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

@ -70,8 +70,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -105,8 +105,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -51,7 +51,7 @@ S_OBJS = _scrsize.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
@$(RM) $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -70,8 +70,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -63,8 +63,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -73,8 +73,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(SERS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(SERS:.ser=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(SERS:.ser=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(SERS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(SERS) $(TGIS)

View File

@ -79,7 +79,7 @@ S_OBJS = c_acptr.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~ *.bck $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
@$(RM) *~ *.bck $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -78,8 +78,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -63,8 +63,8 @@ all: $(OBJS) $(EMDS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(TGIS)
@$(RM) $(EMDS) $(TGIS)

View File

@ -33,7 +33,7 @@ OBJS = _cursor.o \
all: $(OBJS)
clean:
@rm -f *~ $(OBJS)
@$(RM) *~ $(OBJS)
zap: clean

View File

@ -29,10 +29,7 @@ S_OBJS = asmtab.o dbgdasm.o dbgdump.o dbgisram.o dbgsupp.o
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~
@rm -f $(C_OBJS:.o=.s)
@rm -f $(C_OBJS)
@rm -f $(S_OBJS)
@$(RM) *~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -37,10 +37,7 @@ S_OBJS = em-kernel.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~
@rm -f $(C_OBJS:.o=.s)
@rm -f $(C_OBJS)
@rm -f $(S_OBJS)
@$(RM) *~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

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

View File

@ -32,10 +32,7 @@ S_OBJS = joy-kernel.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~
@rm -f $(C_OBJS:.o=.s)
@rm -f $(C_OBJS)
@rm -f $(S_OBJS)
@$(RM) *~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -52,7 +52,7 @@ S_OBJS = _scrsize.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
@$(RM) $(C_OBJS:.c=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -51,7 +51,7 @@ OBJS = _scrsize.o \
all: $(OBJS)
clean:
@rm -f $(OBJS)
@$(RM) $(OBJS)
zap: clean

View File

@ -86,8 +86,8 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)

View File

@ -214,7 +214,7 @@ OBJS = add.o \
all: $(OBJS)
clean:
@rm -f *~ $(COBJS:.o=.s) $(OBJS)
@$(RM) *~ $(COBJS:.o=.s) $(OBJS)
zap: clean

View File

@ -37,10 +37,7 @@ S_OBJS = ser-kernel.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~
@rm -f $(C_OBJS:.o=.s)
@rm -f $(C_OBJS)
@rm -f $(S_OBJS)
@$(RM) *~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -67,10 +67,7 @@ S_OBJS = tgi-kernel.o \
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *~
@rm -f $(C_OBJS:.o=.s)
@rm -f $(C_OBJS)
@rm -f $(S_OBJS)
@$(RM) *~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS)
zap: clean

View File

@ -41,7 +41,7 @@ OBJS = _scrsize.o \
mainargs.o \
randomize.o \
revers.o \
sysuname.o
sysuname.o
#--------------------------------------------------------------------------
# Drivers
@ -63,9 +63,9 @@ all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)
@$(RM) $(EMDS) $(JOYS) $(TGIS)