all: inter

clean:
	rm -f inter
	rm -f *~

inter: inter.cc
	g++ -std=c++11 -Wall inter.cc -o inter -O2
