From 8426c00f118726519f32da9faee426f46ccbce16 Mon Sep 17 00:00:00 2001 From: izydorst Date: Sun, 17 Aug 2003 23:43:20 +0000 Subject: [PATCH] fixes for quiet rm on *BSD OSes git-svn-id: svn://svn.cc65.org/cc65/trunk@2357 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/geos/common/.cvsignore | 1 + libsrc/geos/common/Makefile | 4 +--- libsrc/geos/dlgbox/Makefile | 4 +--- libsrc/geos/runtime/Makefile | 4 +--- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/libsrc/geos/common/.cvsignore b/libsrc/geos/common/.cvsignore index 157cf12d4..a6028a71b 100644 --- a/libsrc/geos/common/.cvsignore +++ b/libsrc/geos/common/.cvsignore @@ -2,3 +2,4 @@ _afailed.s _poserror.s abort.s perror.s +sleep.s diff --git a/libsrc/geos/common/Makefile b/libsrc/geos/common/Makefile index 48dce5cc7..715ca9bc5 100644 --- a/libsrc/geos/common/Makefile +++ b/libsrc/geos/common/Makefile @@ -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) diff --git a/libsrc/geos/dlgbox/Makefile b/libsrc/geos/dlgbox/Makefile index 1c69d7d52..72e188093 100644 --- a/libsrc/geos/dlgbox/Makefile +++ b/libsrc/geos/dlgbox/Makefile @@ -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) diff --git a/libsrc/geos/runtime/Makefile b/libsrc/geos/runtime/Makefile index a3b1fd99a..48871ed4b 100644 --- a/libsrc/geos/runtime/Makefile +++ b/libsrc/geos/runtime/Makefile @@ -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) -- 2.39.5