aboutsummaryrefslogtreecommitdiff
path: root/src/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.sh')
-rwxr-xr-xsrc/build.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/build.sh b/src/build.sh
index 440bca6..3ad716e 100755
--- a/src/build.sh
+++ b/src/build.sh
@@ -17,3 +17,11 @@ gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_
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