blob: 0ec255f7c1acc863e521189c0c042462787d5c9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -eu
if [ -e Makefile ]; then
if [ -e fuzz.mk ]; then
make -sffuzz.mk clean
else
make -s clean
fi
elif [ -e mkfile ]; then
mk clean
fi
vcs clean
|