From d8ae285f932101b41c7b4e371fbafe55bf4b2938 Mon Sep 17 00:00:00 2001 From: Soonho Kong Date: Mon, 4 Aug 2014 11:44:17 -0700 Subject: [PATCH] fix(library/Makefile.common): clean remove olean/d files recursively [skip ci] --- library/Makefile.common | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/Makefile.common b/library/Makefile.common index 96bdb983ac..b0f66d136f 100644 --- a/library/Makefile.common +++ b/library/Makefile.common @@ -22,4 +22,5 @@ all: $(OLEAN_FILES) $(DEP_FILES) .PHONY: all clean clean: - rm -f *.olean *.d + find . -type f -name "*.olean" -delete + find . -type f -name "*.d" -delete