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

subdirs="core vconn util test"

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