1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 02:29:52 +00:00

fixes for quiet rm on *BSD OSes

git-svn-id: svn://svn.cc65.org/cc65/trunk@2357 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst 2003-08-17 23:43:20 +00:00
parent 3a78b76b95
commit 8426c00f11
4 changed files with 4 additions and 9 deletions

View File

@ -2,3 +2,4 @@ _afailed.s
_poserror.s
abort.s
perror.s
sleep.s

View File

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

View File

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

View File

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