commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
14 lines
401 B
Bash
Executable File
14 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
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
|