aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinfried Ritsch <ritsch@users.sourceforge.net>2009-06-22 18:11:45 +0000
committerWinfried Ritsch <ritsch@users.sourceforge.net>2009-06-22 18:11:45 +0000
commit8be0ce95d45bf5701b3476822f37909811f1bfd0 (patch)
tree187e3b53cc829cee869129e9e19677f492baed18
parente2f25a59b9c0fd379bdb7e9bb1085809d2126482 (diff)
clean should never fail
svn path=/trunk/externals/iem/iem_ambi/; revision=11808
-rw-r--r--src/makefile_linux4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile_linux b/src/makefile_linux
index f96e56d..3afc13f 100644
--- a/src/makefile_linux
+++ b/src/makefile_linux
@@ -37,8 +37,8 @@ OBJ = $(SRC:.c=.o)
#
clean:
- rm ..\$(TARGET)
- rm *.o
+ -rm ..\$(TARGET)
+ -rm *.o
all: $(OBJ)
@echo :: $(OBJ)