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