aboutsummaryrefslogtreecommitdiff
path: root/bin/clean
blob: 5a94c773c4631190d66795389c43b7376c2c4943 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -eu

if [ -e Makefile ]; then
	make -s clean
elif [ -e mkfile ]; then
	mk clean
fi
vcs clean