all: reduction

# modify the command to add flags for pthreads/C++11, etc.
reduction: reduction.cpp
	gcc -g $< -o $@

.phony: clean
clean:
	rm -f reduction
