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 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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/networking.inline.hpp \
  48. CodeDweller/threading.hpp \
  49. SNFMulti/snf_xci.hpp
  50. $(CXX) $(CXXFLAGS) -c SNFServer/main.cpp
  51. # CodeDweller...
  52. base64codec.o: CodeDweller/base64codec.cpp CodeDweller/base64codec.hpp
  53. $(CXX) $(CXXFLAGS) -c CodeDweller/base64codec.cpp
  54. configuration.o: CodeDweller/configuration.cpp CodeDweller/configuration.hpp
  55. $(CXX) $(CXXFLAGS) -c CodeDweller/configuration.cpp
  56. mangler.o: CodeDweller/mangler.cpp CodeDweller/mangler.hpp
  57. $(CXX) $(CXXFLAGS) -c CodeDweller/mangler.cpp
  58. networking.o: CodeDweller/networking.cpp CodeDweller/networking.hpp CodeDweller/networking.inline.hpp
  59. $(CXX) $(CXXFLAGS) -c CodeDweller/networking.cpp
  60. timing.o: CodeDweller/timing.cpp CodeDweller/timing.hpp
  61. $(CXX) $(CXXFLAGS) -c CodeDweller/timing.cpp
  62. threading.o: CodeDweller/threading.cpp CodeDweller/threading.hpp
  63. $(CXX) $(CXXFLAGS) -c CodeDweller/threading.cpp
  64. # SNFMulti...
  65. SNFMulti.o: SNFMulti/SNFMulti.cpp \
  66. SNFMulti/SNFMulti.hpp \
  67. SNFMulti/GBUdb.hpp \
  68. SNFMulti/FilterChain.hpp \
  69. SNFMulti/snf_engine.hpp \
  70. SNFMulti/snf_match.h \
  71. SNFMulti/snfCFGmgr.hpp \
  72. SNFMulti/snfGBUdbmgr.hpp \
  73. SNFMulti/snfLOGmgr.hpp \
  74. SNFMulti/snfNETmgr.hpp \
  75. SNFMulti/snfXCImgr.hpp \
  76. SNFMulti/snf_saccades.hpp \
  77. CodeDweller/timing.hpp \
  78. CodeDweller/faults.hpp \
  79. CodeDweller/threading.hpp
  80. $(CXX) $(CXXFLAGS) -c SNFMulti/SNFMulti.cpp
  81. GBUdb.o: SNFMulti/GBUdb.cpp SNFMulti/GBUdb.hpp SNFMulti/GBUdb.inline.hpp
  82. $(CXX) $(CXXFLAGS) -c SNFMulti/GBUdb.cpp
  83. FilterChain.o: SNFMulti/FilterChain.cpp SNFMulti/FilterChain.hpp
  84. $(CXX) $(CXXFLAGS) -c SNFMulti/FilterChain.cpp
  85. snf_engine.o: SNFMulti/snf_engine.cpp SNFMulti/snf_engine.hpp
  86. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_engine.cpp
  87. snfCFGmgr.o: SNFMulti/snfCFGmgr.cpp SNFMulti/snfCFGmgr.hpp SNFMulti/snfCFGmgr.inline.hpp SNFMulti/snf_HeaderFinder.hpp
  88. $(CXX) $(CXXFLAGS) -c SNFMulti/snfCFGmgr.cpp
  89. snf_HeaderFinder.o: SNFMulti/snf_HeaderFinder.cpp \
  90. SNFMulti/snf_HeaderFinder.hpp \
  91. SNFMulti/snf_HeaderFinder.inline.hpp \
  92. SNFMulti/snfLOGmgr.hpp \
  93. SNFMulti/snfCFGmgr.hpp
  94. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_HeaderFinder.cpp
  95. snfGBUdbmgr.o: SNFMulti/snfGBUdbmgr.cpp SNFMulti/snfGBUdbmgr.hpp
  96. $(CXX) $(CXXFLAGS) -c SNFMulti/snfGBUdbmgr.cpp
  97. snfLOGmgr.o: SNFMulti/snfLOGmgr.cpp SNFMulti/snfLOGmgr.hpp SNFMulti/snfLOGmgr.inline.hpp SNFMulti/snf_match.h
  98. $(CXX) $(CXXFLAGS) -c SNFMulti/snfLOGmgr.cpp
  99. snfNETmgr.o: SNFMulti/snfNETmgr.cpp \
  100. SNFMulti/snfNETmgr.hpp \
  101. SNFMulti/snfCFGmgr.hpp \
  102. SNFMulti/snfLOGmgr.hpp \
  103. SNFMulti/snfGBUdbmgr.hpp \
  104. CodeDweller/networking.hpp \
  105. CodeDweller/timing.hpp \
  106. CodeDweller/threading.hpp \
  107. CodeDweller/mangler.hpp
  108. $(CXX) $(CXXFLAGS) -c SNFMulti/snfNETmgr.cpp
  109. snfXCImgr.o: SNFMulti/snfXCImgr.cpp SNFMulti/snfXCImgr.hpp SNFMulti/snf_xci.hpp
  110. $(CXX) $(CXXFLAGS) -c SNFMulti/snfXCImgr.cpp
  111. snf_xci.o: SNFMulti/snf_xci.cpp SNFMulti/snf_xci.hpp CodeDweller/configuration.hpp
  112. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_xci.cpp
  113. snf_saccades.o: SNFMulti/snf_saccades.cpp SNFMulti/snf_saccades.hpp
  114. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_saccades.cpp
  115. snf_sync.o: SNFMulti/snf_sync.cpp \
  116. SNFMulti/snf_sync.hpp \
  117. SNFMulti/GBUdb.hpp \
  118. CodeDweller/networking.hpp \
  119. CodeDweller/configuration.hpp
  120. $(CXX) $(CXXFLAGS) -c SNFMulti/snf_sync.cpp
  121. # Housekeeping...
  122. clean:
  123. rm *.o bin/* || true