2023-09-27 22:07:57 -07:00

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