example = topo_sort3
compiler = g++
exe = -o $(example).exe
#options = -ftemplate-depth-30
options = -Wall
boostpath = c:/ap/boost_1_24_0

compile: $(example).cpp
	$(compiler) $(options) -I$(boostpath) $(exe) $(example).cpp

run: compile
	./$(example) 
