CC=g++
LOP=-o

MAIN=main
TAG=benchmark


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


