# C compiler
CC = g++
CC_FLAGS = -g -fopenmp -O2

bfs: 
	$(CC) $(CC_FLAGS) srad.cpp -o srad 

clean:
	rm -f srad
