From 20e247e31fb40bf2228a2ed84b93896fc48b5eff Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 4 Apr 2026 17:41:01 -0400 Subject: feat: Producing a Readable MAT-File Producing a readable MAT-File of a 1x5 Array of doubles. The file is somewhat manually generated, but currently works. --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7746ba9 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +CC = gcc-15 +CFLAGS = -std=c17 \ + -Wall \ + -Werror \ + -Wextra \ + -Wpedantic \ + -Iinclude +SRCS = src/main.c \ + src/matfile.c +PROG = main + +all: $(PROG) + +$(PROG): $(SRCS) + $(CC) $(CFLAGS) -o $@ $^ + +clean: + rm -rf $(PROG) + +.PHONY: all clean + -- cgit v1.2.3