summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJasper2025-09-08 10:35:14 +0200
committerJasper2025-09-08 10:35:14 +0200
commit1386f6dc5024937c8c9c741efed9274d4861b76f (patch)
tree50c27e867e3551a820e90ac2bd0d43ca087625ef /build.sh
parentbd39c6ab8b87a90944afe271ce847ed0ce090c92 (diff)
Added vector struct
It's completely based on the existing matrix struct and its functions.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 6ec6b63..82d4c4c 100755
--- a/build.sh
+++ b/build.sh
@@ -2,4 +2,4 @@ if [ ! -d "bin" ]; then
mkdir bin
fi
-gcc -Wall -Wextra -pedantic -lm -o bin/linalg_debug debug.c tests.c utils.c matrix.c
+gcc -Wall -Wextra -pedantic -lm -o bin/linalg_debug debug.c tests.c utils.c matrix.c vector.c