Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

makefile 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. CXX = g++
  2. CXXFLAGS = -Wall -O3 -pthread
  3. target: main.o \
  4. base64codec.o \
  5. configuration.o \
  6. mangler.o \
  7. networking.o \
  8. timing.o \
  9. threading.o \
  10. snf_HeaderFinder.o \
  11. snf_xci.o \
  12. snf_sync.o \
  13. snf_saccades.o \
  14. snf_engine.o \
  15. SNFMulti.o \
  16. GBUdb.o \
  17. FilterChain.o \
  18. snfCFGmgr.o \
  19. snfGBUdbmgr.o \
  20. snfLOGmgr.o \
  21. snfNETmgr.o \
  22. snfXCImgr.o
  23. $(CXX) $(CXXFLAGS) -o bin/SNFServer \
  24. main.o \
  25. base64codec.o \
  26. configuration.o \
  27. mangler.o \
  28. networking.o \
  29. timing.o \
  30. threading.o \
  31. snf_HeaderFinder.o \
  32. snf_xci.o \
  33. snf_sync.o \
  34. snf_saccades.o \
  35. snf_engine.o \
  36. SNFMulti.o \
  37. GBUdb.o \
  38. FilterChain.o \
  39. snfCFGmgr.o \
  40. snfGBUdbmgr.o \
  41. snfLOGmgr.o \
  42. snfNETmgr.o \
  43. snfXCImgr.o
  44. main.o: SNFServer/main.cpp \
  45. CodeDweller/timing.hpp \
  46. CodeDweller/networking.hpp \
  47. CodeDweller/threading.hpp \
  48. SNFMulti/snf_xci.hpp
  49. $(CXX) $(CXXFLAGS) -c SNFServer/main.cpp
  50. # CodeDweller...
  51. base64codec.o: CodeDweller/base64codec.cpp CodeDweller/base64codec.hpp
  52. $(CXX) $(CXXFLAGS) -c CodeDweller/base64codec.cpp
  53. configuration.o: CodeDweller/configuration.cpp CodeDweller/configuration.hpp
  54. $(CXX) $(CXXFLAGS) -c CodeDweller/configuration.cpp
  55. mangler.o: CodeDweller/mangler.cpp CodeDweller/mangler.hpp
  56. $(CXX) $(CXXFLAGS) -c CodeDweller/mangler.cpp
  57. networking.o: CodeDweller/networking.cpp CodeDweller/networking.hpp
  58. $(CXX) $(CXXFLAGS) -c CodeDweller/networking.cpp
  59. timing.o: CodeDweller/timing.cpp CodeDweller/timing.hpp
  60. $(CXX) $(CXXFLAGS) -c CodeDweller/timing.cpp
  61. threading.o: CodeDweller/threading.cpp CodeDweller/threading.hpp
  62. $(CXX) $(CXXFLAGS) -c CodeDweller/threading.cpp
  63. # SNFMulti...
  64. SNFMulti.o: SNFMulti/SNFMulti.cpp \
  65. SNFMulti/SNFMulti.hpp \
  66. SNFMulti/GBUdb.hpp \
  67. SNFMulti/FilterChain.hpp \
  68. SNFMulti/snf_engine.hpp \
  69. SNFMulti/snf_match.h \
  70. SNFMulti/snfCFGmgr.hpp \
  71. SNFMulti/snfGBUdbmgr.hpp \
  72. SNFMulti/snfLOGmgr.hpp \
  73. SNFMulti/snfNETmgr.hpp \
  74. SNFMulti/snfXCImgr.hpp \
  75. SNFMulti/snf_saccades.hpp \
  76. CodeDweller/timing.hpp \
  77. CodeDweller/faults.hpp \
  78. CodeDweller/threading.hpp
  79. $(CXX) $(CXXFLAGS) -c SNFMulti/SNFMulti.cpp
  80. GBUdb.o: SNFMulti/GBUdb.cpp SNFMulti/GBUdb.hpp
  81. $(CXX) $(CXXFLAGS) -c SNFMulti/GBUdb.cpp
  82. FilterChain.o: SNFMulti/FilterChain.cpp SNFMulti/FilterChain.hpp
  83. $(CXX) $(CXXFLAGS) -c SNFMulti/FilterChain.cpp
  84. snf_engine.o: SNFMulti/snf_engine.cpp SNFMulti/snf_engine.hpp
  85. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_engine.cpp
  86. snfCFGmgr.o: SNFMulti/snfCFGmgr.cpp SNFMulti/snfCFGmgr.hpp SNFMulti/snf_HeaderFinder.hpp
  87. $(CXX) $(CXXFLAGS) -c SNFMulti/snfCFGmgr.cpp
  88. snf_HeaderFinder.o: SNFMulti/snf_HeaderFinder.cpp \
  89. SNFMulti/snf_HeaderFinder.hpp \
  90. SNFMulti/snfLOGmgr.hpp \
  91. SNFMulti/snfCFGmgr.hpp
  92. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_HeaderFinder.cpp
  93. snfGBUdbmgr.o: SNFMulti/snfGBUdbmgr.cpp SNFMulti/snfGBUdbmgr.hpp
  94. $(CXX) $(CXXFLAGS) -c SNFMulti/snfGBUdbmgr.cpp
  95. snfLOGmgr.o: SNFMulti/snfLOGmgr.cpp SNFMulti/snfLOGmgr.hpp SNFMulti/snf_match.h
  96. $(CXX) $(CXXFLAGS) -c SNFMulti/snfLOGmgr.cpp
  97. snfNETmgr.o: SNFMulti/snfNETmgr.cpp \
  98. SNFMulti/snfNETmgr.hpp \
  99. SNFMulti/snfCFGmgr.hpp \
  100. SNFMulti/snfLOGmgr.hpp \
  101. SNFMulti/snfGBUdbmgr.hpp \
  102. CodeDweller/networking.hpp \
  103. CodeDweller/timing.hpp \
  104. CodeDweller/threading.hpp \
  105. CodeDweller/mangler.hpp
  106. $(CXX) $(CXXFLAGS) -c SNFMulti/snfNETmgr.cpp
  107. snfXCImgr.o: SNFMulti/snfXCImgr.cpp SNFMulti/snfXCImgr.hpp SNFMulti/snf_xci.hpp
  108. $(CXX) $(CXXFLAGS) -c SNFMulti/snfXCImgr.cpp
  109. snf_xci.o: SNFMulti/snf_xci.cpp SNFMulti/snf_xci.hpp CodeDweller/configuration.hpp
  110. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_xci.cpp
  111. snf_saccades.o: SNFMulti/snf_saccades.cpp SNFMulti/snf_saccades.hpp
  112. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_saccades.cpp
  113. snf_sync.o: SNFMulti/snf_sync.cpp \
  114. SNFMulti/snf_sync.hpp \
  115. SNFMulti/GBUdb.hpp \
  116. CodeDweller/networking.hpp \
  117. CodeDweller/configuration.hpp
  118. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_sync.cpp
  119. # Housekeeping...
  120. clean:
  121. rm *.o bin/* || true