Files
2020-05-04 15:56:02 +02:00

16 lines
213 B
Makefile

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)