diff options
Diffstat (limited to 'src/build.sh')
-rwxr-xr-x | src/build.sh | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/src/build.sh b/src/build.sh index 3ad716e..b09c0de 100755 --- a/src/build.sh +++ b/src/build.sh @@ -4,24 +4,7 @@ then mkdir $PWD/lib fi -echo "Building lib/akfs.so" && \ -gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include akfs.c -o lib/akfs.so && \ -echo "Building tests/test_akfs" && \ -gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_akfs.c lib/akfs.so -o tests/test_akfs && \ -echo "Running test_akfs" && \ -time ./tests/test_akfs -rm ./tests/test_akfs - -echo "Building tests/test_akfs_mkdir.c" && \ -gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_akfs_mkdir.c lib/akfs.so -o tests/test_akfs_mkdir && \ -echo "Running test_akfs_mkdir" && \ -time ./tests/test_akfs_mkdir -rm ./tests/test_akfs_mkdir - -echo "Building lib/aklog.so" && \ -gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include aklog.c -o lib/aklog.so && \ -echo "Building tests/test_aklog" && \ -gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklog.c lib/aklog.so -o tests/test_aklog && \ -echo "Running test_aklog" && \ -time ./tests/test_aklog -rm ./tests/test_aklog +find build_tree -type f | while read build_script +do + bash ${build_script} +done |