NSSC/Exercise_01/Makefile

20 lines
359 B
Makefile
Raw Normal View History

2022-03-11 17:52:38 +00:00
CPP=g++
MPICPP=mpic++
CPPFLAGS= -std=c++17 -O3 -Wall -Wpedantic -pedantic
OUT=main
seriel: main.cpp Matrix.h Solver.h
$(CPP) main.cpp $(CPPFLAGS) -o $(OUT)_seriel
mpi: main.cpp Matrix.h Solver.h
$(MPICPP) main.cpp $(CPPFLAGS) -DUSE_MPI -o $(OUT)_mpi
all: seriel mpi
test: seriel
2022-03-11 17:52:38 +00:00
./$(OUT)_seriel 120 10
clean:
rm -f *.o main $(OUT)_seriel $(OUT)_mpi