mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-05-28 10:12:25 +00:00

At this point, USB/IP userspace code is fully functional and can be moved out of staging. Signed-off-by: Valentina Manea <valentina.manea.m@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
366 B
Bash
Executable File
13 lines
366 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -r Makefile ]; then
|
|
make distclean
|
|
fi
|
|
|
|
FILES="aclocal.m4 autom4te.cache compile config.guess config.h.in config.log \
|
|
config.status config.sub configure cscope.out depcomp install-sh \
|
|
libsrc/Makefile libsrc/Makefile.in libtool ltmain.sh Makefile \
|
|
Makefile.in missing src/Makefile src/Makefile.in"
|
|
|
|
rm -vRf $FILES
|