diff options
Diffstat (limited to 'module')
-rw-r--r-- | module/.gitignore | 1 | ||||
-rw-r--r-- | module/Makefile.in | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/module/.gitignore b/module/.gitignore index f81bf6e6d..1ea8ef0bb 100644 --- a/module/.gitignore +++ b/module/.gitignore @@ -6,6 +6,7 @@ .*.cmd .*.d +/.cache.mk /.tmp_versions /Module.markers /Module.symvers diff --git a/module/Makefile.in b/module/Makefile.in index 15c74e130..4cd6988bb 100644 --- a/module/Makefile.in +++ b/module/Makefile.in @@ -54,6 +54,8 @@ clean: if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi if [ -f Module.markers ]; then $(RM) Module.markers; fi + find . -name '*.ur-safe' -type f -print | xargs $(RM) + modules_install: @# Install the kernel modules $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` $@ \ |