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

subdirs="core util test"

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