fix(library/Makefile.common): clean remove olean/d files recursively

[skip ci]
This commit is contained in:
Soonho Kong 2014-08-04 11:44:17 -07:00
parent 94efd51fc5
commit d8ae285f93

View file

@ -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