CXX    = g++ -std=c++11
CFLAGSR = -O3 -Wall
CFLAGS = -O3 -Wall -pg -ggdb

all: breast_write

breast_write:	main.o
	$(CXX) $(CFLAGS) main.cpp -o breast_write


clean:
		/bin/rm -f  main.o breast_write
