Added sequential version

This commit is contained in:
Fabio Salvini
2016-11-12 15:38:02 +01:00
parent cd40e635fc
commit 51e793af96
5 changed files with 165 additions and 0 deletions

12
sequential/Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-Wall -lm -std=c99
all: config jacobi_sequential.c
${CC} ${CFLAGS} config.o jacobi_sequential.c -o jacobi.out
config: ../config/config.c
${CC} -c ${CFLAGS} ../config/config.c
.PHONY: clean
clean:
rm -f *.out *.o