Vec/Matrix linear algebra code things

This commit is contained in:
Imbus 2025-05-19 14:56:25 +02:00
parent 726f01dadf
commit 749c09d78f
3 changed files with 252 additions and 0 deletions

14
linalg/Makefile Normal file
View file

@ -0,0 +1,14 @@
CC = gcc
CFLAGS = -Wall -O2
TARGET = main
SRC = main.c
#LDFLAGS =
$(TARGET): $(SRC)
@echo CC $@
@$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET)