Skip to content
Snippets Groups Projects
Commit 4318b6ce authored by Rahul Agarwal's avatar Rahul Agarwal
Browse files

audiodlkm: Update command in clean target

Current setting doesn't clean all the generated
files. Update the command to search and clean
generated output files from all the subdirs.

Change-Id: I7f0b91dd064eba8dda8f679fa4e9e4244d1cba37
parent 19321c01
No related branches found
No related tags found
No related merge requests found
......@@ -130,5 +130,8 @@ ifeq ($(QTI_TECHPACK), true)
endif
clean:
rm -f *.o *.ko *.mod.c *.mod.o *~ .*.cmd Module.symvers
@find . -type f \( -name "*.o" -o -name "*.ko" -o -name "*.mod" \
-o -name "*.mod.c" -o -name "*.mod.o" -o -name ".*.cmd" \
-o -name "Module.symvers" -o -name ".*.d" -o -name "modules.order" \) \
-delete
rm -rf .tmp_versions
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment