From 5402530100772eb3a8db649a52ee454145ae54dc Mon Sep 17 00:00:00 2001 From: kaotisk Date: Mon, 25 Nov 2024 17:16:27 +0200 Subject: Test for aklog.c and build system --- src/build.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/build.sh') 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 -- cgit v1.2.3