Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
CXXFLAGS = -Wall -std=c++11
|
||||
|
||||
OBJS = so2-center.o Entry.o
|
||||
|
||||
LIBS = -pthread -lncurses
|
||||
|
||||
TARGET = so2-center
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) $(TARGET)
|
||||
Reference in New Issue
Block a user