]> git.sur5r.net Git - cc65/commitdiff
fixes for quiet rm on *BSD OSes
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 17 Aug 2003 23:43:20 +0000 (23:43 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 17 Aug 2003 23:43:20 +0000 (23:43 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2357 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/geos/common/.cvsignore
libsrc/geos/common/Makefile
libsrc/geos/dlgbox/Makefile
libsrc/geos/runtime/Makefile

index 157cf12d4054e191627d3e871e0efe116e43d100..a6028a71b220e3d172324e8aa93ab5c6148c2c3f 100644 (file)
@@ -2,3 +2,4 @@ _afailed.s
 _poserror.s
 abort.s
 perror.s
+sleep.s
index 48dce5cc73d9c1a3b2163f1a92a5927bc75cf975..715ca9bc54b6ccf92e59233df0213d9456288c0d 100644 (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)
index 1c69d7d5210c7add0c72502baa2fc55f25b54ea6..72e188093008b01253a627db480c75adf392939e 100644 (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)
index a3b1fd99a48c0fc1b267b966929fb013cc147ffa..48871ed4b7f6abe6b296b42a0b42d3101793e8a8 100644 (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)