aboutsummaryrefslogtreecommitdiff
path: root/src/build_tree/ak_log_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/build_tree/ak_log_build.sh')
-rwxr-xr-xsrc/build_tree/ak_log_build.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/build_tree/ak_log_build.sh b/src/build_tree/ak_log_build.sh
deleted file mode 100755
index ab83378..0000000
--- a/src/build_tree/ak_log_build.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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 && \
-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
-gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_aklogwrite.c lib/aklog.so -o tests/test_aklogwrite && \
-echo "Running test_aklogwrite" && \
-time ./tests/test_aklogwrite && \
-rm ./tests/test_aklogwrite