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.

makefile 1.1KB

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/*