Add comment on how main is linked

This commit is contained in:
Janita Willumsen 2023-09-23 15:14:57 +02:00
parent 2b103b9e3a
commit e979c3955e

View File

@ -8,6 +8,9 @@ DEBUG=-DDBG
.PHONY: clean .PHONY: clean
# main: main.o utils.o matrix.o jacobi.o
# $(CC) $^ -o $@ $(CCFLAGS)
test_suite: test_suite.o matrix.o jacobi.o test_suite: test_suite.o matrix.o jacobi.o
$(CC) $^ -o $@ $(CCFLAGS) $(DEBUG) $(CC) $^ -o $@ $(CCFLAGS) $(DEBUG)
@ -17,3 +20,4 @@ test_suite: test_suite.o matrix.o jacobi.o
clean: clean:
rm *.o rm *.o
rm test_suite rm test_suite
# rm main