diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-02 20:54:37 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-02 20:54:37 +0300 |
commit | b9f80a2b37edf9682f189b406542b3f7a93b24a3 (patch) | |
tree | 2c96484ccb77af8a59ed6fb7fe4632b5bafb9858 /src/new_lib.sh | |
parent | 0ec3188626275fa2678882c9827ade8d045ffc7d (diff) | |
download | arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.tar.gz arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.tar.bz2 arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.zip |
Moved directory and some experimental changes
Diffstat (limited to 'src/new_lib.sh')
-rwxr-xr-x | src/new_lib.sh | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/new_lib.sh b/src/new_lib.sh deleted file mode 100755 index a079472..0000000 --- a/src/new_lib.sh +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/env bash - -library="${1}" -library_capitals="$(echo ${library} | tr '[:lower:]' '[:upper:]')" -include_file="include/ak${library}.h" -test_file="tests/test_ak${library}.c" -implementation_file="ak${library}.c" -build_file="build_tree/ak_${library}_build.sh" - -include_template(){ - cat > ${include_file} << EOF -#ifndef AK_${library_capitals}_H -#define AK_${library_capitals}_H - -int ak_${library}(); - -#endif // AK_${library_capitals}_H -EOF - -} - -implementation_template(){ - cat > ${implementation_file} << EOF -#include <ak${library}.h> -#include <stdio.h> - -int ak_${library}() -{ - printf("Testing: %s\n", __func__); - return 0; -} -EOF -} - -test_template(){ - cat > ${test_file} << EOF -#include <ak${library}.h> - -int main() -{ - ak_${library}(); - return 0; -} -EOF -} - -build_template(){ - cat > ${build_file} << EOF -echo "Building lib/ak${library}.so" && \ -gcc -c -shared -Wextra -Wall -Werror -pedantic -ggdb -fPIC -I./include ak${library}.c -o lib/ak${library}.so && \ -echo "Building tests/test_ak${library}" && \ -gcc -Wextra -Wall -Werror -pedantic -ggdb -Wl,-rpath=lib -I./include tests/test_ak${library}.c lib/ak${library}.so -o tests/test_ak${library} && \ -echo "Running test_ak${library}" && \ -time ./tests/test_ak${library} -rm ./tests/test_ak${library} -EOF - chmod +x ${build_file} -} - -if [ ! -f ${include_file} ] -then - include_template -else - echo "ERROR: ${include_file} exists" -fi -if [ ! -f ${test_file} ] -then - test_template -else - echo "ERROR: ${test_file} exists" -fi -if [ ! -f ${implementation_file} ] -then -implementation_template -else - echo "ERROR: ${implementation_file} exists" -fi -if [ ! -f ${build_file} ] -then -build_template -else - echo "ERROR: ${build_file} exists" -fi |