diff options
Diffstat (limited to 'c_implementation/build_tree/ak_logcatter_build.sh')
-rwxr-xr-x | c_implementation/build_tree/ak_logcatter_build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/c_implementation/build_tree/ak_logcatter_build.sh b/c_implementation/build_tree/ak_logcatter_build.sh new file mode 100755 index 0000000..aa321cb --- /dev/null +++ b/c_implementation/build_tree/ak_logcatter_build.sh @@ -0,0 +1,7 @@ +echo "Building lib/aklogcatter.so" && \ +gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include src/aklogcatter.c -o lib/libaklogcatter.so && \ +echo "Building tests/test_aklogcatter" && \ +gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklogcatter.c lib/libaklog.so lib/libaklogcatter.so -o tests/test_aklogcatter && \ +echo "Running test_aklogcatter" && \ +time ./tests/test_aklogcatter && \ +rm ./tests/test_aklogcatter |