Newer
Older

Camille Coti
committed
TAU = 0
CXX = g++
MPICXX = mpic++
LD = g++
MPILD = mpic++

Camille Coti
committed
ifeq ($(TAU),1)
TAUDIR = $(HOME)/logiciels/tau-2.29/x86_64
TAUOPT = -DTAUPROF -I$(TAUDIR)/../include
TAULIB = -L$(TAUDIR)/lib -lTAU
MPICXX = tau_cxx.sh
CXX = tau_cxx.sh
LD = tau_cxx.sh
MPILD = tau_cxx.sh
# export TAU_MAKEFILE=$(TAUDIR)/lib/Makefile.tau-papi-mpi-pdt-openmp
else
TAUOPT =
TAULIB =
endif
CFLAGS = -Wall -g -O3 -Wno-unused-variable -std=c++11 $(TAUOPT)
LDOPT = -lginac $(TAULIB)
MPISRC = masterworker.cpp mw_addslave.cpp hierarchical.cpp \
utils.cpp utils_parall.cpp profiling.cpp mw_combined.cpp \
tensormatrix: tensormatrix.o
$(LD) -o $@ $^ $(LDOPT)
%.o: %.cpp
$(MPICXX) $(CFLAGS) -o $@ -c $<
run: tensormatrix_mpi
clean:
@rm -f *.o tensormatrix_mpi tensormatrix
.PHONY: clean run