From e979c3955ea80b7a1b62c14794e8de27fd12d983 Mon Sep 17 00:00:00 2001 From: Janita Willumsen Date: Sat, 23 Sep 2023 15:14:57 +0200 Subject: [PATCH] Add comment on how main is linked --- src/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile b/src/Makefile index 443b225..b5e052f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,6 +8,9 @@ DEBUG=-DDBG .PHONY: clean +# main: main.o utils.o matrix.o jacobi.o +# $(CC) $^ -o $@ $(CCFLAGS) + test_suite: test_suite.o matrix.o jacobi.o $(CC) $^ -o $@ $(CCFLAGS) $(DEBUG) @@ -17,3 +20,4 @@ test_suite: test_suite.o matrix.o jacobi.o clean: rm *.o rm test_suite + # rm main