CC=g++
LOP=-o
LOPT=-O2

MAIN=./Sources/benchm
TAG=benchmark


$(MAIN).o :
	$(CC) $(LOPT) $(LOP) $(TAG) $(MAIN).cpp


