CXXFLAGS =	-Wall -std=c++11

OBJS =		so2-game.o Brick.o Platform.o Scene.o Stopwatch.o

LIBS =		-pthread -lncurses

TARGET =	so2-game

$(TARGET):	$(OBJS)
	$(CXX) -o $(TARGET) $(OBJS) $(LIBS)

all:	$(TARGET)

clean:
	rm -f $(OBJS) $(TARGET)