Initial commit

This commit is contained in:
Jan Potocki
2020-05-04 15:56:02 +02:00
commit a8382b30e1
27 changed files with 1282 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
CXXFLAGS = -Wall -std=c++11
OBJS = so2-bricks.o Brick.o
LIBS = -pthread -lncurses
TARGET = so2-bricks
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)