summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-10 17:23:52 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-10 17:23:52 +0100
commit7ae859397e872aada3788da16335308a3c71233a (patch)
tree6df971fd07d6ca85c42db2d3fabb0c5078551658 /makefiles
parent0de4a082d0f8a156b5aa40719c13e9fe44d2787d (diff)
downloadwolfbones-7ae859397e872aada3788da16335308a3c71233a.tar.gz
wolfbones-7ae859397e872aada3788da16335308a3c71233a.tar.bz2
got rid of NetBSD rm -f problems
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/clean.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefiles/gmake/clean.mk b/makefiles/gmake/clean.mk
index d416905..95b7d0a 100644
--- a/makefiles/gmake/clean.mk
+++ b/makefiles/gmake/clean.mk
@@ -24,10 +24,10 @@ clean: clean_recursive local_clean
-@rm -f *.d port/*.d 2>/dev/null
-@rm -f $(BINS) $(CPP_BINS) $(TEST_BINS) $(TEST_CPP_BINS) 2>/dev/null
-@rm -f $(OBJS) $(CPP_OBJS) $(BIN_OBJS) $(TEST_BIN_OBJS) $(CPP_BIN_OBJS) $(TEST_CPP_BIN_OBJS) 2>/dev/null
- -@rm -f exec/*
- -@rm -f *.core
- -@rm -f $(CMODULES) $(CPPMODULES)
- -@rm -f $(CMODULES .o=.d) $(CPPMODULES .o=.d)
+ -@rm -f exec/* 2>/dev/null
+ -@rm -f *.core 2>/dev/null
+ -@rm -f $(CMODULES) $(CPPMODULES) 2>/dev/null
+ -@rm -f $(CMODULES .o=.d) $(CPPMODULES .o=.d) 2>/dev/null
.PHONY: distclean_recursive distclean local_distclean