CMakeLists.txt 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. # ====================================================================
  2. # definitions;
  3. # --------------------------------------------------------------------
  4. add_definitions(-DAR7x00)
  5. # ====================================================================
  6. # programs;
  7. # --------------------------------------------------------------------
  8. add_executable(ampboot ampboot.c)
  9. add_executable(CMEncrypt CMEncrypt.c)
  10. add_executable(ampID ampID.c)
  11. add_executable(int6k int6k.c)
  12. add_executable(int6kboot int6kboot.c)
  13. add_executable(int6keth int6keth.c)
  14. add_executable(int6khost int6khost.c)
  15. add_executable(int64host int64host.c)
  16. add_executable(int6kid int6kid.c)
  17. add_executable(int6klist int6klist.c)
  18. add_executable(int6klog int6klog.c)
  19. add_executable(int6kmdio int6kmdio.c)
  20. add_executable(int6kmdio2 int6kmdio2.c)
  21. add_executable(int6kmod int6kmod.c)
  22. add_executable(int6kstat int6kstat.c)
  23. add_executable(int6ktest int6ktest.c)
  24. add_executable(int6krate int6krate.c)
  25. add_executable(int6krule int6krule.c)
  26. add_executable(int6ktone int6ktone.c)
  27. add_executable(int6kwait int6kwait.c)
  28. add_executable(sada sada.c)
  29. add_executable(coqos_add coqos_add.c)
  30. add_executable(coqos_info coqos_info.c)
  31. add_executable(coqos_man coqos_man.c)
  32. add_executable(coqos_mod coqos_mod.c)
  33. add_executable(coqos_rel coqos_rel.c)
  34. add_executable(mdustats mdustats.c)
  35. add_executable(amphost amphost.c)
  36. add_executable(amplist amplist.c)
  37. add_executable(amprate amprate.c)
  38. add_executable(ampstat ampstat.c)
  39. add_executable(amptest amptest.c)
  40. add_executable(amptool amptool.c)
  41. add_executable(amptone amptone.c)
  42. add_executable(ampwait ampwait.c)
  43. add_executable(plcboot plcboot.c)
  44. add_executable(plchost plchost.c)
  45. add_executable(plcID plcID.c)
  46. add_executable(plclist plclist.c)
  47. add_executable(plcrate plcrate.c)
  48. add_executable(plcrule plcrule.c)
  49. add_executable(plcstat plcstat.c)
  50. add_executable(plctest plctest.c)
  51. add_executable(plctool plctool.c)
  52. add_executable(plctone plctone.c)
  53. add_executable(plcwait plcwait.c)
  54. add_executable(plcget plcget.c)
  55. add_executable(plcset plcset.c)
  56. add_executable(plcotst plcotst.c)
  57. add_executable(plcfwd plcfwd.c)
  58. add_executable(plcmdio16 plcmdio16.c)
  59. add_executable(plcmdio32 plcmdio32.c)
  60. if (NOT WIN32)
  61. add_executable(plchostd plchostd.c)
  62. add_executable(plcdevs plcdevs.c)
  63. endif (NOT WIN32)
  64. # ====================================================================
  65. # libraries;
  66. # --------------------------------------------------------------------
  67. add_library(plc
  68. ParseRule.c
  69. rules.c
  70. VersionInfo1.c
  71. Attributes1.c
  72. Identity1.c
  73. SendMME.c
  74. ReadMME.c
  75. Failure.c
  76. Confirm.c
  77. WatchdogReport.c
  78. Request.c
  79. Display.c
  80. Devices.c
  81. chipset.c
  82. WriteNVM.c
  83. WritePIB.c
  84. HostActionResponse.c
  85. FactoryReset.c
  86. FactoryDefaults.c
  87. ResetDevice.c
  88. SDRAMInfo.c
  89. RemoteHosts.c
  90. SetNMK.c
  91. PushButton.c
  92. NetInfo1.c
  93. NetInfo2.c
  94. ReadMFG.c
  95. NVRAMInfo.c
  96. StationRole.c
  97. WriteCFG.c
  98. ModuleRead.c
  99. ModuleCommit.c
  100. ModuleSession.c
  101. VersionInfo2.c
  102. Attributes2.c
  103. Identity2.c
  104. FlashDevice2.c
  105. FlashFirmware.c
  106. FlashParameters.c
  107. FlashSoftloader.c
  108. ModuleSpec.c
  109. ModuleWrite.c
  110. ReadFMI.c
  111. ModuleDump.c
  112. WaitForStart.c
  113. InitDevice.c
  114. InitDevice1.c
  115. InitDevice2.c
  116. BootDevice1.c
  117. BootDevice2.c
  118. FlashDevice1.c
  119. WaitForReset.c
  120. FlashNVM.c
  121. BootFirmware1.c
  122. BootFirmware2.c
  123. StartFirmware1.c
  124. WriteFirmware1.c
  125. WriteExecuteFirmware1.c
  126. WriteExecuteFirmware2.c
  127. WriteExecuteParameters1.c
  128. WriteExecuteParameters2.c
  129. BootParameters1.c
  130. BootParameters2.c
  131. WriteMEM.c
  132. WriteExecutePIB.c
  133. WriteMOD.c
  134. ReadParameterBlock.c
  135. LocalDevices.c
  136. DeviceIdent.c
  137. ChangeIdent.c
  138. ReadFirmware1.c
  139. ReadFirmware2.c
  140. ReadParameters.c
  141. ReadParameters1.c
  142. ReadParameters2.c
  143. EmulateHost.c
  144. EmulateHost64.c
  145. ListLocalDevices.c
  146. ListRemoteDevices.c
  147. ListRemoteDevices1.c
  148. ListRemoteDevices2.c
  149. Transmit.c
  150. Traffic1.c
  151. Traffic2.c
  152. NetworkTraffic1.c
  153. NetworkTraffic2.c
  154. Antiphon.c
  155. PhyRates1.c
  156. PhyRates2.c
  157. RxRates2.c
  158. Topology1.c
  159. Topology2.c
  160. PLCTopology.c
  161. PLCTopologyPrint.c
  162. NetworkInformation1.c
  163. NetworkInformation2.c
  164. LinkStatistics.c
  165. LinkStatus.c
  166. Platform.c
  167. ExecuteApplets.c
  168. ExecuteApplets1.c
  169. ExecuteApplets2.c
  170. WriteExecuteApplet2.c
  171. SignalToNoise1.c
  172. SignalToNoise2.c
  173. ToneMaps1.c
  174. ToneMaps2.c
  175. MDUTrafficStats.c
  176. GetProperty.c
  177. SetProperty.c
  178. PLCSelect.c
  179. NVMSelect.c
  180. SlaveMembership.c
  181. )
  182. # ====================================================================
  183. # dependencies;
  184. # --------------------------------------------------------------------
  185. target_link_libraries(CMEncrypt plc key)
  186. target_link_libraries(ampID plc)
  187. target_link_libraries(ampboot plc)
  188. target_link_libraries(int6k key plc)
  189. target_link_libraries(int6kboot plc)
  190. target_link_libraries(int6keth plc)
  191. target_link_libraries(int6khost plc)
  192. target_link_libraries(int64host plc)
  193. target_link_libraries(int6kid plc)
  194. target_link_libraries(int6klist plc)
  195. target_link_libraries(int6klog plc)
  196. target_link_libraries(int6kmdio plc)
  197. target_link_libraries(int6kmdio2 plc)
  198. target_link_libraries(int6kmod plc)
  199. target_link_libraries(int6kstat plc)
  200. target_link_libraries(int6ktest plc)
  201. target_link_libraries(int6krate plc)
  202. target_link_libraries(int6krule plc)
  203. target_link_libraries(int6ktone plc)
  204. target_link_libraries(int6kwait plc)
  205. target_link_libraries(sada plc)
  206. target_link_libraries(coqos_add plc)
  207. target_link_libraries(coqos_info plc)
  208. target_link_libraries(coqos_man plc)
  209. target_link_libraries(coqos_mod plc)
  210. target_link_libraries(coqos_rel plc)
  211. target_link_libraries(mdustats plc)
  212. target_link_libraries(amphost plc)
  213. target_link_libraries(amplist plc)
  214. target_link_libraries(amprate plc)
  215. target_link_libraries(ampstat plc)
  216. target_link_libraries(amptest plc)
  217. target_link_libraries(amptool plc key)
  218. target_link_libraries(amptone plc)
  219. target_link_libraries(ampwait plc)
  220. target_link_libraries(plc ram nvm pib mme ether tools)
  221. target_link_libraries(plcboot plc)
  222. target_link_libraries(plchost plc)
  223. target_link_libraries(plcID plc)
  224. target_link_libraries(plclist plc)
  225. target_link_libraries(plcrate plc)
  226. target_link_libraries(plcrule plc)
  227. target_link_libraries(plcstat plc)
  228. target_link_libraries(plctest plc)
  229. target_link_libraries(plctool plc key)
  230. target_link_libraries(plctone plc)
  231. target_link_libraries(plcwait plc)
  232. target_link_libraries(plcget plc)
  233. target_link_libraries(plcset plc)
  234. target_link_libraries(plcotst plc)
  235. target_link_libraries(plcfwd plc)
  236. target_link_libraries(plcmdio16 plc)
  237. target_link_libraries(plcmdio32 plc)
  238. if (NOT WIN32)
  239. target_link_libraries(plchostd plc)
  240. target_link_libraries(plcdevs plc)
  241. endif (NOT WIN32)