CXXFLAGS = -g -Wall -Wextra -std=c++11 

all: main

main: main.o
	$(CXX) $^ -o $@ $(LDFLAGS)

main.o: main.cpp

clean:
	rm -f *.o main