Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233
  1. CXX = g++
  2. CXXFLAGS = -Wall -O3
  3. target: main.o networking.o timing.o threading.o configuration.o snf_xci.o main.o
  4. $(CXX) $(CXXFLAGS) main.o networking.o timing.o threading.o configuration.o snf_xci.o -o bin/SNFClient -static -pthread
  5. main.o: SNFClient/main.cpp \
  6. CodeDweller/timing.hpp \
  7. CodeDweller/networking.hpp \
  8. CodeDweller/networking.inline.hpp \
  9. CodeDweller/threading.hpp \
  10. SNFMulti/snf_xci.hpp
  11. $(CXX) $(CXXFLAGS) -c SNFClient/main.cpp
  12. networking.o: CodeDweller/networking.cpp CodeDweller/networking.hpp CodeDweller/networking.inline.hpp
  13. $(CXX) $(CXXFLAGS) -c CodeDweller/networking.cpp
  14. timing.o: CodeDweller/timing.cpp CodeDweller/timing.hpp
  15. $(CXX) $(CXXFLAGS) -c CodeDweller/timing.cpp
  16. threading.o: CodeDweller/threading.cpp CodeDweller/threading.hpp
  17. $(CXX) $(CXXFLAGS) -c CodeDweller/threading.cpp
  18. configuration.o: CodeDweller/configuration.cpp CodeDweller/configuration.hpp
  19. $(CXX) $(CXXFLAGS) -c CodeDweller/configuration.cpp
  20. snf_xci.o: SNFMulti/snf_xci.cpp SNFMulti/snf_xci.hpp CodeDweller/configuration.hpp
  21. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_xci.cpp
  22. clean:
  23. rm *.o bin/*