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

subdirs="ecp util test"

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