C++ = g++
CFLAGS = -g

search_to_fill : search_to_fill.cc
	$(C++) $(CFLAGS) -o search_to_fill search_to_fill.cc

clean :
	rm -f search_to_fill
