aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/build_tree/ak_logcatter_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_logcatter_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_logcatter_build.sh')
-rwxr-xr-xc_implementation/build_tree/ak_logcatter_build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/c_implementation/build_tree/ak_logcatter_build.sh b/c_implementation/build_tree/ak_logcatter_build.sh
index 5038073..aa321cb 100755
--- a/c_implementation/build_tree/ak_logcatter_build.sh
+++ b/c_implementation/build_tree/ak_logcatter_build.sh
@@ -1,7 +1,7 @@
echo "Building lib/aklogcatter.so" && \
-gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include aklogcatter.c -o 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/aklog.so lib/aklogcatter.so -o 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