summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/compile/build_all
blob: a0a470cd77d8f7e826770e74941c7d3655a18e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -

dirlist=`find . -type d ! \( -name . -o -name CVS \) -prune | \
	sed -e s,./,, | sort`

for dir in $dirlist; do
	echo === $dir
	echo ""
	echo "***"
	echo ""
	(cd $dir ; time make -k)
	echo ""
	echo "***"
	echo ""
done