summaryrefslogtreecommitdiff
path: root/ecp/build.sh
blob: 0b205dd55021d6a4d4d582a418481520a27825bd (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

subdirs="src util test"

for i in $subdirs; do
	(cd $i && make $1 && cd ..) || exit;
done