mirror of
https://github.com/nasa/fpp.git
synced 2025-12-15 21:08:16 -06:00
15 lines
314 B
Bash
Executable File
15 lines
314 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../../../scripts/utils.sh
|
|
|
|
clean
|
|
rm -f default-tests.sh default-update-ref.sh
|
|
for file in `find . -name '*out.*' \
|
|
-or -name '*.names.txt' \
|
|
-or -name '*o' \
|
|
-or \( -name '*.cpp' -and -not -name '*.ref.cpp' \) \
|
|
-or \( -name '*.hpp' -and -not -name '*.ref.hpp' \)`
|
|
do
|
|
rm $file
|
|
done
|