diff options
author | Uros Majstorovic <majstor@majstor.org> | 2017-05-23 17:28:12 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2017-05-23 17:28:12 +0200 |
commit | ab0325ae7906230f1ea82f08b27c72b075e9a13d (patch) | |
tree | 5a292826fdea4db2c86b2d82b80fa489c6c131c7 /code/build.sh | |
parent | 3ef6719f47b734b12c0b11c725b7f12e3fb3c08a (diff) |
build fixed; added lib util
Diffstat (limited to 'code/build.sh')
-rwxr-xr-x | code/build.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/code/build.sh b/code/build.sh new file mode 100755 index 0000000..96f26e3 --- /dev/null +++ b/code/build.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +subdirs="core proxy util test" + +for i in $subdirs; do + (cd $i && make $1 && cd ..) || exit; +done + |