From 36988832e4a9ebb0890c360d66680136328b059d Mon Sep 17 00:00:00 2001 From: Camille Coti <camille.coti@lipn.univ-paris13.fr> Date: Tue, 26 Nov 2019 17:01:24 -0800 Subject: [PATCH] Compile the sequential version --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile b/src/Makefile index 67a637f..0277479 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,6 +19,9 @@ all: tensormatrix_mpi tensormatrix_mpi: $(MPIOBJ) $(MPILD) -o $@ $^ $(LDOPT) +tensormatrix: tensormatrix.o + $(LD) -o $@ $^ $(LDOPT) + %.o: %.cpp $(MPICXX) $(CFLAGS) -o $@ -c $< -- GitLab