CXX = mpic++
CXXFLAGS = -g -O2 -Wall -Wextra -Wpedantic -DOMPI_SKIP_MPICXX
.PHONY: clean

reduction: reduction.cpp
	$(CXX) $(CXXFLAGS) -o $@ $<

clean:
	rm -rf reduction
