Projekty z kursu Systemy operacyjne 2 na PWr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. CXXFLAGS = -Wall -std=c++11
  2. OBJS = so2-center.o Entry.o
  3. LIBS = -pthread -lncurses
  4. TARGET = so2-center
  5. $(TARGET): $(OBJS)
  6. $(CXX) -o $(TARGET) $(OBJS) $(LIBS)
  7. all: $(TARGET)
  8. clean:
  9. rm -f $(OBJS) $(TARGET)