aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/build_tree/ak_log_build.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2025-04-02 21:04:37 +0300
committerkaotisk <kaotisk@arching-kaos.org>2025-04-02 21:04:37 +0300
commitfa304767b5746d4ee7f4bef1cfda0570d03066cc (patch)
treeb75901167d74bb2f2361eea9e2627166b3895b49 /c_implementation/build_tree/ak_log_build.sh
parentb9f80a2b37edf9682f189b406542b3f7a93b24a3 (diff)
downloadarching-kaos-tools-fa304767b5746d4ee7f4bef1cfda0570d03066cc.tar.gz
arching-kaos-tools-fa304767b5746d4ee7f4bef1cfda0570d03066cc.tar.bz2
arching-kaos-tools-fa304767b5746d4ee7f4bef1cfda0570d03066cc.zip
[C] Necessary refactoring
Diffstat (limited to 'c_implementation/build_tree/ak_log_build.sh')
-rwxr-xr-xc_implementation/build_tree/ak_log_build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/c_implementation/build_tree/ak_log_build.sh b/c_implementation/build_tree/ak_log_build.sh
index 713b915..76a4113 100755
--- a/c_implementation/build_tree/ak_log_build.sh
+++ b/c_implementation/build_tree/ak_log_build.sh
@@ -1,13 +1,13 @@
#!/usr/bin/env bash
echo "Building lib/aklog.so" && \
-gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include aklog.c -o lib/aklog.so && \
+gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include src/aklog.c -o lib/libaklog.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 && \
+gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklog.c lib/libaklog.so -o tests/test_aklog && \
echo "Running test_aklog" && \
time ./tests/test_aklog # && \
# rm ./tests/test_aklog
-gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklogwrite.c lib/aklog.so -o tests/test_aklogwrite && \
+gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklogwrite.c lib/libaklog.so -o tests/test_aklogwrite && \
echo "Running test_aklogwrite" && \
time ./tests/test_aklogwrite && \
rm ./tests/test_aklogwrite