From 650c13ca7aa45709314dc195c8a56e85c784d20a Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Mon, 22 Sep 2014 18:45:45 -0400 Subject: [PATCH] There's no need for rm -rf, just rm -f --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index b1714a8..33a4752 100644 --- a/build/Makefile +++ b/build/Makefile @@ -58,7 +58,7 @@ toxic: $(OBJ) @$(CC) -MM $(CFLAGS) $(SRC_DIR)/$*.c > $*.d clean: - rm -rf *.d *.o toxic + rm -f *.d *.o toxic -include $(OBJ:.o=.d)