Makefile 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  1. # CMAKE generated file: DO NOT EDIT!
  2. # Generated by "Unix Makefiles" Generator, CMake Version 3.15
  3. # Default target executed when no arguments are given to make.
  4. default_target: all
  5. .PHONY : default_target
  6. # Allow only one "make -f Makefile2" at a time, but pass parallelism.
  7. .NOTPARALLEL:
  8. #=============================================================================
  9. # Special targets provided by cmake.
  10. # Disable implicit rules so canonical targets will work.
  11. .SUFFIXES:
  12. # Remove some rules from gmake that .SUFFIXES does not remove.
  13. SUFFIXES =
  14. .SUFFIXES: .hpux_make_needs_suffix_list
  15. # Suppress display of executed commands.
  16. $(VERBOSE).SILENT:
  17. # A target that is always out of date.
  18. cmake_force:
  19. .PHONY : cmake_force
  20. #=============================================================================
  21. # Set environment variables for the build.
  22. # The shell in which to execute make rules.
  23. SHELL = /bin/sh
  24. # The CMake executable.
  25. CMAKE_COMMAND = /usr/local/bin/cmake
  26. # The command to remove a file.
  27. RM = /usr/local/bin/cmake -E remove -f
  28. # Escaping for special characters.
  29. EQUALS = =
  30. # The top-level source directory on which CMake was run.
  31. CMAKE_SOURCE_DIR = /home/book/hisi3518_lora
  32. # The top-level build directory on which CMake was run.
  33. CMAKE_BINARY_DIR = /home/book/hisi3518_lora/cmake-build-debug
  34. #=============================================================================
  35. # Targets provided globally by CMake.
  36. # Special rule for the target rebuild_cache
  37. rebuild_cache:
  38. @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
  39. /usr/local/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
  40. .PHONY : rebuild_cache
  41. # Special rule for the target rebuild_cache
  42. rebuild_cache/fast: rebuild_cache
  43. .PHONY : rebuild_cache/fast
  44. # Special rule for the target edit_cache
  45. edit_cache:
  46. @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
  47. /usr/local/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
  48. .PHONY : edit_cache
  49. # Special rule for the target edit_cache
  50. edit_cache/fast: edit_cache
  51. .PHONY : edit_cache/fast
  52. # The main all target
  53. all: cmake_check_build_system
  54. cd /home/book/hisi3518_lora/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_progress_start /home/book/hisi3518_lora/cmake-build-debug/CMakeFiles /home/book/hisi3518_lora/cmake-build-debug/mqtt/mbedtls/CMakeFiles/progress.marks
  55. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 mqtt/mbedtls/all
  56. $(CMAKE_COMMAND) -E cmake_progress_start /home/book/hisi3518_lora/cmake-build-debug/CMakeFiles 0
  57. .PHONY : all
  58. # The main clean target
  59. clean:
  60. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 mqtt/mbedtls/clean
  61. .PHONY : clean
  62. # The main clean target
  63. clean/fast: clean
  64. .PHONY : clean/fast
  65. # Prepare targets for installation.
  66. preinstall: all
  67. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 mqtt/mbedtls/preinstall
  68. .PHONY : preinstall
  69. # Prepare targets for installation.
  70. preinstall/fast:
  71. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 mqtt/mbedtls/preinstall
  72. .PHONY : preinstall/fast
  73. # clear depends
  74. depend:
  75. cd /home/book/hisi3518_lora/cmake-build-debug && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
  76. .PHONY : depend
  77. # Convenience name for target.
  78. mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/rule:
  79. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/rule
  80. .PHONY : mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/rule
  81. # Convenience name for target.
  82. mqtt_mbedtls: mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/rule
  83. .PHONY : mqtt_mbedtls
  84. # fast build rule for target.
  85. mqtt_mbedtls/fast:
  86. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build
  87. .PHONY : mqtt_mbedtls/fast
  88. library/aes.o: library/aes.c.o
  89. .PHONY : library/aes.o
  90. # target to build an object file
  91. library/aes.c.o:
  92. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aes.c.o
  93. .PHONY : library/aes.c.o
  94. library/aes.i: library/aes.c.i
  95. .PHONY : library/aes.i
  96. # target to preprocess a source file
  97. library/aes.c.i:
  98. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aes.c.i
  99. .PHONY : library/aes.c.i
  100. library/aes.s: library/aes.c.s
  101. .PHONY : library/aes.s
  102. # target to generate assembly for a file
  103. library/aes.c.s:
  104. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aes.c.s
  105. .PHONY : library/aes.c.s
  106. library/aesni.o: library/aesni.c.o
  107. .PHONY : library/aesni.o
  108. # target to build an object file
  109. library/aesni.c.o:
  110. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aesni.c.o
  111. .PHONY : library/aesni.c.o
  112. library/aesni.i: library/aesni.c.i
  113. .PHONY : library/aesni.i
  114. # target to preprocess a source file
  115. library/aesni.c.i:
  116. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aesni.c.i
  117. .PHONY : library/aesni.c.i
  118. library/aesni.s: library/aesni.c.s
  119. .PHONY : library/aesni.s
  120. # target to generate assembly for a file
  121. library/aesni.c.s:
  122. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aesni.c.s
  123. .PHONY : library/aesni.c.s
  124. library/arc4.o: library/arc4.c.o
  125. .PHONY : library/arc4.o
  126. # target to build an object file
  127. library/arc4.c.o:
  128. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/arc4.c.o
  129. .PHONY : library/arc4.c.o
  130. library/arc4.i: library/arc4.c.i
  131. .PHONY : library/arc4.i
  132. # target to preprocess a source file
  133. library/arc4.c.i:
  134. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/arc4.c.i
  135. .PHONY : library/arc4.c.i
  136. library/arc4.s: library/arc4.c.s
  137. .PHONY : library/arc4.s
  138. # target to generate assembly for a file
  139. library/arc4.c.s:
  140. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/arc4.c.s
  141. .PHONY : library/arc4.c.s
  142. library/aria.o: library/aria.c.o
  143. .PHONY : library/aria.o
  144. # target to build an object file
  145. library/aria.c.o:
  146. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aria.c.o
  147. .PHONY : library/aria.c.o
  148. library/aria.i: library/aria.c.i
  149. .PHONY : library/aria.i
  150. # target to preprocess a source file
  151. library/aria.c.i:
  152. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aria.c.i
  153. .PHONY : library/aria.c.i
  154. library/aria.s: library/aria.c.s
  155. .PHONY : library/aria.s
  156. # target to generate assembly for a file
  157. library/aria.c.s:
  158. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/aria.c.s
  159. .PHONY : library/aria.c.s
  160. library/asn1parse.o: library/asn1parse.c.o
  161. .PHONY : library/asn1parse.o
  162. # target to build an object file
  163. library/asn1parse.c.o:
  164. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1parse.c.o
  165. .PHONY : library/asn1parse.c.o
  166. library/asn1parse.i: library/asn1parse.c.i
  167. .PHONY : library/asn1parse.i
  168. # target to preprocess a source file
  169. library/asn1parse.c.i:
  170. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1parse.c.i
  171. .PHONY : library/asn1parse.c.i
  172. library/asn1parse.s: library/asn1parse.c.s
  173. .PHONY : library/asn1parse.s
  174. # target to generate assembly for a file
  175. library/asn1parse.c.s:
  176. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1parse.c.s
  177. .PHONY : library/asn1parse.c.s
  178. library/asn1write.o: library/asn1write.c.o
  179. .PHONY : library/asn1write.o
  180. # target to build an object file
  181. library/asn1write.c.o:
  182. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1write.c.o
  183. .PHONY : library/asn1write.c.o
  184. library/asn1write.i: library/asn1write.c.i
  185. .PHONY : library/asn1write.i
  186. # target to preprocess a source file
  187. library/asn1write.c.i:
  188. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1write.c.i
  189. .PHONY : library/asn1write.c.i
  190. library/asn1write.s: library/asn1write.c.s
  191. .PHONY : library/asn1write.s
  192. # target to generate assembly for a file
  193. library/asn1write.c.s:
  194. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/asn1write.c.s
  195. .PHONY : library/asn1write.c.s
  196. library/base64.o: library/base64.c.o
  197. .PHONY : library/base64.o
  198. # target to build an object file
  199. library/base64.c.o:
  200. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/base64.c.o
  201. .PHONY : library/base64.c.o
  202. library/base64.i: library/base64.c.i
  203. .PHONY : library/base64.i
  204. # target to preprocess a source file
  205. library/base64.c.i:
  206. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/base64.c.i
  207. .PHONY : library/base64.c.i
  208. library/base64.s: library/base64.c.s
  209. .PHONY : library/base64.s
  210. # target to generate assembly for a file
  211. library/base64.c.s:
  212. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/base64.c.s
  213. .PHONY : library/base64.c.s
  214. library/bignum.o: library/bignum.c.o
  215. .PHONY : library/bignum.o
  216. # target to build an object file
  217. library/bignum.c.o:
  218. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/bignum.c.o
  219. .PHONY : library/bignum.c.o
  220. library/bignum.i: library/bignum.c.i
  221. .PHONY : library/bignum.i
  222. # target to preprocess a source file
  223. library/bignum.c.i:
  224. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/bignum.c.i
  225. .PHONY : library/bignum.c.i
  226. library/bignum.s: library/bignum.c.s
  227. .PHONY : library/bignum.s
  228. # target to generate assembly for a file
  229. library/bignum.c.s:
  230. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/bignum.c.s
  231. .PHONY : library/bignum.c.s
  232. library/blowfish.o: library/blowfish.c.o
  233. .PHONY : library/blowfish.o
  234. # target to build an object file
  235. library/blowfish.c.o:
  236. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/blowfish.c.o
  237. .PHONY : library/blowfish.c.o
  238. library/blowfish.i: library/blowfish.c.i
  239. .PHONY : library/blowfish.i
  240. # target to preprocess a source file
  241. library/blowfish.c.i:
  242. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/blowfish.c.i
  243. .PHONY : library/blowfish.c.i
  244. library/blowfish.s: library/blowfish.c.s
  245. .PHONY : library/blowfish.s
  246. # target to generate assembly for a file
  247. library/blowfish.c.s:
  248. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/blowfish.c.s
  249. .PHONY : library/blowfish.c.s
  250. library/camellia.o: library/camellia.c.o
  251. .PHONY : library/camellia.o
  252. # target to build an object file
  253. library/camellia.c.o:
  254. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/camellia.c.o
  255. .PHONY : library/camellia.c.o
  256. library/camellia.i: library/camellia.c.i
  257. .PHONY : library/camellia.i
  258. # target to preprocess a source file
  259. library/camellia.c.i:
  260. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/camellia.c.i
  261. .PHONY : library/camellia.c.i
  262. library/camellia.s: library/camellia.c.s
  263. .PHONY : library/camellia.s
  264. # target to generate assembly for a file
  265. library/camellia.c.s:
  266. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/camellia.c.s
  267. .PHONY : library/camellia.c.s
  268. library/ccm.o: library/ccm.c.o
  269. .PHONY : library/ccm.o
  270. # target to build an object file
  271. library/ccm.c.o:
  272. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ccm.c.o
  273. .PHONY : library/ccm.c.o
  274. library/ccm.i: library/ccm.c.i
  275. .PHONY : library/ccm.i
  276. # target to preprocess a source file
  277. library/ccm.c.i:
  278. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ccm.c.i
  279. .PHONY : library/ccm.c.i
  280. library/ccm.s: library/ccm.c.s
  281. .PHONY : library/ccm.s
  282. # target to generate assembly for a file
  283. library/ccm.c.s:
  284. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ccm.c.s
  285. .PHONY : library/ccm.c.s
  286. library/certs.o: library/certs.c.o
  287. .PHONY : library/certs.o
  288. # target to build an object file
  289. library/certs.c.o:
  290. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/certs.c.o
  291. .PHONY : library/certs.c.o
  292. library/certs.i: library/certs.c.i
  293. .PHONY : library/certs.i
  294. # target to preprocess a source file
  295. library/certs.c.i:
  296. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/certs.c.i
  297. .PHONY : library/certs.c.i
  298. library/certs.s: library/certs.c.s
  299. .PHONY : library/certs.s
  300. # target to generate assembly for a file
  301. library/certs.c.s:
  302. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/certs.c.s
  303. .PHONY : library/certs.c.s
  304. library/chacha20.o: library/chacha20.c.o
  305. .PHONY : library/chacha20.o
  306. # target to build an object file
  307. library/chacha20.c.o:
  308. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chacha20.c.o
  309. .PHONY : library/chacha20.c.o
  310. library/chacha20.i: library/chacha20.c.i
  311. .PHONY : library/chacha20.i
  312. # target to preprocess a source file
  313. library/chacha20.c.i:
  314. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chacha20.c.i
  315. .PHONY : library/chacha20.c.i
  316. library/chacha20.s: library/chacha20.c.s
  317. .PHONY : library/chacha20.s
  318. # target to generate assembly for a file
  319. library/chacha20.c.s:
  320. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chacha20.c.s
  321. .PHONY : library/chacha20.c.s
  322. library/chachapoly.o: library/chachapoly.c.o
  323. .PHONY : library/chachapoly.o
  324. # target to build an object file
  325. library/chachapoly.c.o:
  326. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chachapoly.c.o
  327. .PHONY : library/chachapoly.c.o
  328. library/chachapoly.i: library/chachapoly.c.i
  329. .PHONY : library/chachapoly.i
  330. # target to preprocess a source file
  331. library/chachapoly.c.i:
  332. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chachapoly.c.i
  333. .PHONY : library/chachapoly.c.i
  334. library/chachapoly.s: library/chachapoly.c.s
  335. .PHONY : library/chachapoly.s
  336. # target to generate assembly for a file
  337. library/chachapoly.c.s:
  338. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/chachapoly.c.s
  339. .PHONY : library/chachapoly.c.s
  340. library/cipher.o: library/cipher.c.o
  341. .PHONY : library/cipher.o
  342. # target to build an object file
  343. library/cipher.c.o:
  344. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher.c.o
  345. .PHONY : library/cipher.c.o
  346. library/cipher.i: library/cipher.c.i
  347. .PHONY : library/cipher.i
  348. # target to preprocess a source file
  349. library/cipher.c.i:
  350. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher.c.i
  351. .PHONY : library/cipher.c.i
  352. library/cipher.s: library/cipher.c.s
  353. .PHONY : library/cipher.s
  354. # target to generate assembly for a file
  355. library/cipher.c.s:
  356. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher.c.s
  357. .PHONY : library/cipher.c.s
  358. library/cipher_wrap.o: library/cipher_wrap.c.o
  359. .PHONY : library/cipher_wrap.o
  360. # target to build an object file
  361. library/cipher_wrap.c.o:
  362. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher_wrap.c.o
  363. .PHONY : library/cipher_wrap.c.o
  364. library/cipher_wrap.i: library/cipher_wrap.c.i
  365. .PHONY : library/cipher_wrap.i
  366. # target to preprocess a source file
  367. library/cipher_wrap.c.i:
  368. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher_wrap.c.i
  369. .PHONY : library/cipher_wrap.c.i
  370. library/cipher_wrap.s: library/cipher_wrap.c.s
  371. .PHONY : library/cipher_wrap.s
  372. # target to generate assembly for a file
  373. library/cipher_wrap.c.s:
  374. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cipher_wrap.c.s
  375. .PHONY : library/cipher_wrap.c.s
  376. library/cmac.o: library/cmac.c.o
  377. .PHONY : library/cmac.o
  378. # target to build an object file
  379. library/cmac.c.o:
  380. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cmac.c.o
  381. .PHONY : library/cmac.c.o
  382. library/cmac.i: library/cmac.c.i
  383. .PHONY : library/cmac.i
  384. # target to preprocess a source file
  385. library/cmac.c.i:
  386. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cmac.c.i
  387. .PHONY : library/cmac.c.i
  388. library/cmac.s: library/cmac.c.s
  389. .PHONY : library/cmac.s
  390. # target to generate assembly for a file
  391. library/cmac.c.s:
  392. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/cmac.c.s
  393. .PHONY : library/cmac.c.s
  394. library/ctr_drbg.o: library/ctr_drbg.c.o
  395. .PHONY : library/ctr_drbg.o
  396. # target to build an object file
  397. library/ctr_drbg.c.o:
  398. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ctr_drbg.c.o
  399. .PHONY : library/ctr_drbg.c.o
  400. library/ctr_drbg.i: library/ctr_drbg.c.i
  401. .PHONY : library/ctr_drbg.i
  402. # target to preprocess a source file
  403. library/ctr_drbg.c.i:
  404. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ctr_drbg.c.i
  405. .PHONY : library/ctr_drbg.c.i
  406. library/ctr_drbg.s: library/ctr_drbg.c.s
  407. .PHONY : library/ctr_drbg.s
  408. # target to generate assembly for a file
  409. library/ctr_drbg.c.s:
  410. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ctr_drbg.c.s
  411. .PHONY : library/ctr_drbg.c.s
  412. library/debug.o: library/debug.c.o
  413. .PHONY : library/debug.o
  414. # target to build an object file
  415. library/debug.c.o:
  416. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/debug.c.o
  417. .PHONY : library/debug.c.o
  418. library/debug.i: library/debug.c.i
  419. .PHONY : library/debug.i
  420. # target to preprocess a source file
  421. library/debug.c.i:
  422. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/debug.c.i
  423. .PHONY : library/debug.c.i
  424. library/debug.s: library/debug.c.s
  425. .PHONY : library/debug.s
  426. # target to generate assembly for a file
  427. library/debug.c.s:
  428. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/debug.c.s
  429. .PHONY : library/debug.c.s
  430. library/des.o: library/des.c.o
  431. .PHONY : library/des.o
  432. # target to build an object file
  433. library/des.c.o:
  434. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/des.c.o
  435. .PHONY : library/des.c.o
  436. library/des.i: library/des.c.i
  437. .PHONY : library/des.i
  438. # target to preprocess a source file
  439. library/des.c.i:
  440. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/des.c.i
  441. .PHONY : library/des.c.i
  442. library/des.s: library/des.c.s
  443. .PHONY : library/des.s
  444. # target to generate assembly for a file
  445. library/des.c.s:
  446. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/des.c.s
  447. .PHONY : library/des.c.s
  448. library/dhm.o: library/dhm.c.o
  449. .PHONY : library/dhm.o
  450. # target to build an object file
  451. library/dhm.c.o:
  452. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/dhm.c.o
  453. .PHONY : library/dhm.c.o
  454. library/dhm.i: library/dhm.c.i
  455. .PHONY : library/dhm.i
  456. # target to preprocess a source file
  457. library/dhm.c.i:
  458. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/dhm.c.i
  459. .PHONY : library/dhm.c.i
  460. library/dhm.s: library/dhm.c.s
  461. .PHONY : library/dhm.s
  462. # target to generate assembly for a file
  463. library/dhm.c.s:
  464. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/dhm.c.s
  465. .PHONY : library/dhm.c.s
  466. library/ecdh.o: library/ecdh.c.o
  467. .PHONY : library/ecdh.o
  468. # target to build an object file
  469. library/ecdh.c.o:
  470. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdh.c.o
  471. .PHONY : library/ecdh.c.o
  472. library/ecdh.i: library/ecdh.c.i
  473. .PHONY : library/ecdh.i
  474. # target to preprocess a source file
  475. library/ecdh.c.i:
  476. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdh.c.i
  477. .PHONY : library/ecdh.c.i
  478. library/ecdh.s: library/ecdh.c.s
  479. .PHONY : library/ecdh.s
  480. # target to generate assembly for a file
  481. library/ecdh.c.s:
  482. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdh.c.s
  483. .PHONY : library/ecdh.c.s
  484. library/ecdsa.o: library/ecdsa.c.o
  485. .PHONY : library/ecdsa.o
  486. # target to build an object file
  487. library/ecdsa.c.o:
  488. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdsa.c.o
  489. .PHONY : library/ecdsa.c.o
  490. library/ecdsa.i: library/ecdsa.c.i
  491. .PHONY : library/ecdsa.i
  492. # target to preprocess a source file
  493. library/ecdsa.c.i:
  494. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdsa.c.i
  495. .PHONY : library/ecdsa.c.i
  496. library/ecdsa.s: library/ecdsa.c.s
  497. .PHONY : library/ecdsa.s
  498. # target to generate assembly for a file
  499. library/ecdsa.c.s:
  500. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecdsa.c.s
  501. .PHONY : library/ecdsa.c.s
  502. library/ecjpake.o: library/ecjpake.c.o
  503. .PHONY : library/ecjpake.o
  504. # target to build an object file
  505. library/ecjpake.c.o:
  506. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecjpake.c.o
  507. .PHONY : library/ecjpake.c.o
  508. library/ecjpake.i: library/ecjpake.c.i
  509. .PHONY : library/ecjpake.i
  510. # target to preprocess a source file
  511. library/ecjpake.c.i:
  512. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecjpake.c.i
  513. .PHONY : library/ecjpake.c.i
  514. library/ecjpake.s: library/ecjpake.c.s
  515. .PHONY : library/ecjpake.s
  516. # target to generate assembly for a file
  517. library/ecjpake.c.s:
  518. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecjpake.c.s
  519. .PHONY : library/ecjpake.c.s
  520. library/ecp.o: library/ecp.c.o
  521. .PHONY : library/ecp.o
  522. # target to build an object file
  523. library/ecp.c.o:
  524. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp.c.o
  525. .PHONY : library/ecp.c.o
  526. library/ecp.i: library/ecp.c.i
  527. .PHONY : library/ecp.i
  528. # target to preprocess a source file
  529. library/ecp.c.i:
  530. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp.c.i
  531. .PHONY : library/ecp.c.i
  532. library/ecp.s: library/ecp.c.s
  533. .PHONY : library/ecp.s
  534. # target to generate assembly for a file
  535. library/ecp.c.s:
  536. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp.c.s
  537. .PHONY : library/ecp.c.s
  538. library/ecp_curves.o: library/ecp_curves.c.o
  539. .PHONY : library/ecp_curves.o
  540. # target to build an object file
  541. library/ecp_curves.c.o:
  542. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp_curves.c.o
  543. .PHONY : library/ecp_curves.c.o
  544. library/ecp_curves.i: library/ecp_curves.c.i
  545. .PHONY : library/ecp_curves.i
  546. # target to preprocess a source file
  547. library/ecp_curves.c.i:
  548. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp_curves.c.i
  549. .PHONY : library/ecp_curves.c.i
  550. library/ecp_curves.s: library/ecp_curves.c.s
  551. .PHONY : library/ecp_curves.s
  552. # target to generate assembly for a file
  553. library/ecp_curves.c.s:
  554. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ecp_curves.c.s
  555. .PHONY : library/ecp_curves.c.s
  556. library/entropy.o: library/entropy.c.o
  557. .PHONY : library/entropy.o
  558. # target to build an object file
  559. library/entropy.c.o:
  560. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy.c.o
  561. .PHONY : library/entropy.c.o
  562. library/entropy.i: library/entropy.c.i
  563. .PHONY : library/entropy.i
  564. # target to preprocess a source file
  565. library/entropy.c.i:
  566. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy.c.i
  567. .PHONY : library/entropy.c.i
  568. library/entropy.s: library/entropy.c.s
  569. .PHONY : library/entropy.s
  570. # target to generate assembly for a file
  571. library/entropy.c.s:
  572. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy.c.s
  573. .PHONY : library/entropy.c.s
  574. library/entropy_poll.o: library/entropy_poll.c.o
  575. .PHONY : library/entropy_poll.o
  576. # target to build an object file
  577. library/entropy_poll.c.o:
  578. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy_poll.c.o
  579. .PHONY : library/entropy_poll.c.o
  580. library/entropy_poll.i: library/entropy_poll.c.i
  581. .PHONY : library/entropy_poll.i
  582. # target to preprocess a source file
  583. library/entropy_poll.c.i:
  584. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy_poll.c.i
  585. .PHONY : library/entropy_poll.c.i
  586. library/entropy_poll.s: library/entropy_poll.c.s
  587. .PHONY : library/entropy_poll.s
  588. # target to generate assembly for a file
  589. library/entropy_poll.c.s:
  590. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/entropy_poll.c.s
  591. .PHONY : library/entropy_poll.c.s
  592. library/error.o: library/error.c.o
  593. .PHONY : library/error.o
  594. # target to build an object file
  595. library/error.c.o:
  596. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/error.c.o
  597. .PHONY : library/error.c.o
  598. library/error.i: library/error.c.i
  599. .PHONY : library/error.i
  600. # target to preprocess a source file
  601. library/error.c.i:
  602. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/error.c.i
  603. .PHONY : library/error.c.i
  604. library/error.s: library/error.c.s
  605. .PHONY : library/error.s
  606. # target to generate assembly for a file
  607. library/error.c.s:
  608. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/error.c.s
  609. .PHONY : library/error.c.s
  610. library/gcm.o: library/gcm.c.o
  611. .PHONY : library/gcm.o
  612. # target to build an object file
  613. library/gcm.c.o:
  614. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/gcm.c.o
  615. .PHONY : library/gcm.c.o
  616. library/gcm.i: library/gcm.c.i
  617. .PHONY : library/gcm.i
  618. # target to preprocess a source file
  619. library/gcm.c.i:
  620. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/gcm.c.i
  621. .PHONY : library/gcm.c.i
  622. library/gcm.s: library/gcm.c.s
  623. .PHONY : library/gcm.s
  624. # target to generate assembly for a file
  625. library/gcm.c.s:
  626. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/gcm.c.s
  627. .PHONY : library/gcm.c.s
  628. library/havege.o: library/havege.c.o
  629. .PHONY : library/havege.o
  630. # target to build an object file
  631. library/havege.c.o:
  632. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/havege.c.o
  633. .PHONY : library/havege.c.o
  634. library/havege.i: library/havege.c.i
  635. .PHONY : library/havege.i
  636. # target to preprocess a source file
  637. library/havege.c.i:
  638. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/havege.c.i
  639. .PHONY : library/havege.c.i
  640. library/havege.s: library/havege.c.s
  641. .PHONY : library/havege.s
  642. # target to generate assembly for a file
  643. library/havege.c.s:
  644. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/havege.c.s
  645. .PHONY : library/havege.c.s
  646. library/hkdf.o: library/hkdf.c.o
  647. .PHONY : library/hkdf.o
  648. # target to build an object file
  649. library/hkdf.c.o:
  650. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hkdf.c.o
  651. .PHONY : library/hkdf.c.o
  652. library/hkdf.i: library/hkdf.c.i
  653. .PHONY : library/hkdf.i
  654. # target to preprocess a source file
  655. library/hkdf.c.i:
  656. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hkdf.c.i
  657. .PHONY : library/hkdf.c.i
  658. library/hkdf.s: library/hkdf.c.s
  659. .PHONY : library/hkdf.s
  660. # target to generate assembly for a file
  661. library/hkdf.c.s:
  662. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hkdf.c.s
  663. .PHONY : library/hkdf.c.s
  664. library/hmac_drbg.o: library/hmac_drbg.c.o
  665. .PHONY : library/hmac_drbg.o
  666. # target to build an object file
  667. library/hmac_drbg.c.o:
  668. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hmac_drbg.c.o
  669. .PHONY : library/hmac_drbg.c.o
  670. library/hmac_drbg.i: library/hmac_drbg.c.i
  671. .PHONY : library/hmac_drbg.i
  672. # target to preprocess a source file
  673. library/hmac_drbg.c.i:
  674. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hmac_drbg.c.i
  675. .PHONY : library/hmac_drbg.c.i
  676. library/hmac_drbg.s: library/hmac_drbg.c.s
  677. .PHONY : library/hmac_drbg.s
  678. # target to generate assembly for a file
  679. library/hmac_drbg.c.s:
  680. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/hmac_drbg.c.s
  681. .PHONY : library/hmac_drbg.c.s
  682. library/md.o: library/md.c.o
  683. .PHONY : library/md.o
  684. # target to build an object file
  685. library/md.c.o:
  686. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md.c.o
  687. .PHONY : library/md.c.o
  688. library/md.i: library/md.c.i
  689. .PHONY : library/md.i
  690. # target to preprocess a source file
  691. library/md.c.i:
  692. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md.c.i
  693. .PHONY : library/md.c.i
  694. library/md.s: library/md.c.s
  695. .PHONY : library/md.s
  696. # target to generate assembly for a file
  697. library/md.c.s:
  698. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md.c.s
  699. .PHONY : library/md.c.s
  700. library/md2.o: library/md2.c.o
  701. .PHONY : library/md2.o
  702. # target to build an object file
  703. library/md2.c.o:
  704. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md2.c.o
  705. .PHONY : library/md2.c.o
  706. library/md2.i: library/md2.c.i
  707. .PHONY : library/md2.i
  708. # target to preprocess a source file
  709. library/md2.c.i:
  710. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md2.c.i
  711. .PHONY : library/md2.c.i
  712. library/md2.s: library/md2.c.s
  713. .PHONY : library/md2.s
  714. # target to generate assembly for a file
  715. library/md2.c.s:
  716. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md2.c.s
  717. .PHONY : library/md2.c.s
  718. library/md4.o: library/md4.c.o
  719. .PHONY : library/md4.o
  720. # target to build an object file
  721. library/md4.c.o:
  722. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md4.c.o
  723. .PHONY : library/md4.c.o
  724. library/md4.i: library/md4.c.i
  725. .PHONY : library/md4.i
  726. # target to preprocess a source file
  727. library/md4.c.i:
  728. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md4.c.i
  729. .PHONY : library/md4.c.i
  730. library/md4.s: library/md4.c.s
  731. .PHONY : library/md4.s
  732. # target to generate assembly for a file
  733. library/md4.c.s:
  734. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md4.c.s
  735. .PHONY : library/md4.c.s
  736. library/md5.o: library/md5.c.o
  737. .PHONY : library/md5.o
  738. # target to build an object file
  739. library/md5.c.o:
  740. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md5.c.o
  741. .PHONY : library/md5.c.o
  742. library/md5.i: library/md5.c.i
  743. .PHONY : library/md5.i
  744. # target to preprocess a source file
  745. library/md5.c.i:
  746. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md5.c.i
  747. .PHONY : library/md5.c.i
  748. library/md5.s: library/md5.c.s
  749. .PHONY : library/md5.s
  750. # target to generate assembly for a file
  751. library/md5.c.s:
  752. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md5.c.s
  753. .PHONY : library/md5.c.s
  754. library/md_wrap.o: library/md_wrap.c.o
  755. .PHONY : library/md_wrap.o
  756. # target to build an object file
  757. library/md_wrap.c.o:
  758. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md_wrap.c.o
  759. .PHONY : library/md_wrap.c.o
  760. library/md_wrap.i: library/md_wrap.c.i
  761. .PHONY : library/md_wrap.i
  762. # target to preprocess a source file
  763. library/md_wrap.c.i:
  764. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md_wrap.c.i
  765. .PHONY : library/md_wrap.c.i
  766. library/md_wrap.s: library/md_wrap.c.s
  767. .PHONY : library/md_wrap.s
  768. # target to generate assembly for a file
  769. library/md_wrap.c.s:
  770. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/md_wrap.c.s
  771. .PHONY : library/md_wrap.c.s
  772. library/memory_buffer_alloc.o: library/memory_buffer_alloc.c.o
  773. .PHONY : library/memory_buffer_alloc.o
  774. # target to build an object file
  775. library/memory_buffer_alloc.c.o:
  776. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/memory_buffer_alloc.c.o
  777. .PHONY : library/memory_buffer_alloc.c.o
  778. library/memory_buffer_alloc.i: library/memory_buffer_alloc.c.i
  779. .PHONY : library/memory_buffer_alloc.i
  780. # target to preprocess a source file
  781. library/memory_buffer_alloc.c.i:
  782. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/memory_buffer_alloc.c.i
  783. .PHONY : library/memory_buffer_alloc.c.i
  784. library/memory_buffer_alloc.s: library/memory_buffer_alloc.c.s
  785. .PHONY : library/memory_buffer_alloc.s
  786. # target to generate assembly for a file
  787. library/memory_buffer_alloc.c.s:
  788. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/memory_buffer_alloc.c.s
  789. .PHONY : library/memory_buffer_alloc.c.s
  790. library/net_sockets.o: library/net_sockets.c.o
  791. .PHONY : library/net_sockets.o
  792. # target to build an object file
  793. library/net_sockets.c.o:
  794. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/net_sockets.c.o
  795. .PHONY : library/net_sockets.c.o
  796. library/net_sockets.i: library/net_sockets.c.i
  797. .PHONY : library/net_sockets.i
  798. # target to preprocess a source file
  799. library/net_sockets.c.i:
  800. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/net_sockets.c.i
  801. .PHONY : library/net_sockets.c.i
  802. library/net_sockets.s: library/net_sockets.c.s
  803. .PHONY : library/net_sockets.s
  804. # target to generate assembly for a file
  805. library/net_sockets.c.s:
  806. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/net_sockets.c.s
  807. .PHONY : library/net_sockets.c.s
  808. library/nist_kw.o: library/nist_kw.c.o
  809. .PHONY : library/nist_kw.o
  810. # target to build an object file
  811. library/nist_kw.c.o:
  812. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/nist_kw.c.o
  813. .PHONY : library/nist_kw.c.o
  814. library/nist_kw.i: library/nist_kw.c.i
  815. .PHONY : library/nist_kw.i
  816. # target to preprocess a source file
  817. library/nist_kw.c.i:
  818. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/nist_kw.c.i
  819. .PHONY : library/nist_kw.c.i
  820. library/nist_kw.s: library/nist_kw.c.s
  821. .PHONY : library/nist_kw.s
  822. # target to generate assembly for a file
  823. library/nist_kw.c.s:
  824. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/nist_kw.c.s
  825. .PHONY : library/nist_kw.c.s
  826. library/oid.o: library/oid.c.o
  827. .PHONY : library/oid.o
  828. # target to build an object file
  829. library/oid.c.o:
  830. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/oid.c.o
  831. .PHONY : library/oid.c.o
  832. library/oid.i: library/oid.c.i
  833. .PHONY : library/oid.i
  834. # target to preprocess a source file
  835. library/oid.c.i:
  836. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/oid.c.i
  837. .PHONY : library/oid.c.i
  838. library/oid.s: library/oid.c.s
  839. .PHONY : library/oid.s
  840. # target to generate assembly for a file
  841. library/oid.c.s:
  842. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/oid.c.s
  843. .PHONY : library/oid.c.s
  844. library/padlock.o: library/padlock.c.o
  845. .PHONY : library/padlock.o
  846. # target to build an object file
  847. library/padlock.c.o:
  848. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/padlock.c.o
  849. .PHONY : library/padlock.c.o
  850. library/padlock.i: library/padlock.c.i
  851. .PHONY : library/padlock.i
  852. # target to preprocess a source file
  853. library/padlock.c.i:
  854. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/padlock.c.i
  855. .PHONY : library/padlock.c.i
  856. library/padlock.s: library/padlock.c.s
  857. .PHONY : library/padlock.s
  858. # target to generate assembly for a file
  859. library/padlock.c.s:
  860. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/padlock.c.s
  861. .PHONY : library/padlock.c.s
  862. library/pem.o: library/pem.c.o
  863. .PHONY : library/pem.o
  864. # target to build an object file
  865. library/pem.c.o:
  866. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pem.c.o
  867. .PHONY : library/pem.c.o
  868. library/pem.i: library/pem.c.i
  869. .PHONY : library/pem.i
  870. # target to preprocess a source file
  871. library/pem.c.i:
  872. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pem.c.i
  873. .PHONY : library/pem.c.i
  874. library/pem.s: library/pem.c.s
  875. .PHONY : library/pem.s
  876. # target to generate assembly for a file
  877. library/pem.c.s:
  878. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pem.c.s
  879. .PHONY : library/pem.c.s
  880. library/pk.o: library/pk.c.o
  881. .PHONY : library/pk.o
  882. # target to build an object file
  883. library/pk.c.o:
  884. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk.c.o
  885. .PHONY : library/pk.c.o
  886. library/pk.i: library/pk.c.i
  887. .PHONY : library/pk.i
  888. # target to preprocess a source file
  889. library/pk.c.i:
  890. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk.c.i
  891. .PHONY : library/pk.c.i
  892. library/pk.s: library/pk.c.s
  893. .PHONY : library/pk.s
  894. # target to generate assembly for a file
  895. library/pk.c.s:
  896. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk.c.s
  897. .PHONY : library/pk.c.s
  898. library/pk_wrap.o: library/pk_wrap.c.o
  899. .PHONY : library/pk_wrap.o
  900. # target to build an object file
  901. library/pk_wrap.c.o:
  902. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk_wrap.c.o
  903. .PHONY : library/pk_wrap.c.o
  904. library/pk_wrap.i: library/pk_wrap.c.i
  905. .PHONY : library/pk_wrap.i
  906. # target to preprocess a source file
  907. library/pk_wrap.c.i:
  908. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk_wrap.c.i
  909. .PHONY : library/pk_wrap.c.i
  910. library/pk_wrap.s: library/pk_wrap.c.s
  911. .PHONY : library/pk_wrap.s
  912. # target to generate assembly for a file
  913. library/pk_wrap.c.s:
  914. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pk_wrap.c.s
  915. .PHONY : library/pk_wrap.c.s
  916. library/pkcs11.o: library/pkcs11.c.o
  917. .PHONY : library/pkcs11.o
  918. # target to build an object file
  919. library/pkcs11.c.o:
  920. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs11.c.o
  921. .PHONY : library/pkcs11.c.o
  922. library/pkcs11.i: library/pkcs11.c.i
  923. .PHONY : library/pkcs11.i
  924. # target to preprocess a source file
  925. library/pkcs11.c.i:
  926. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs11.c.i
  927. .PHONY : library/pkcs11.c.i
  928. library/pkcs11.s: library/pkcs11.c.s
  929. .PHONY : library/pkcs11.s
  930. # target to generate assembly for a file
  931. library/pkcs11.c.s:
  932. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs11.c.s
  933. .PHONY : library/pkcs11.c.s
  934. library/pkcs12.o: library/pkcs12.c.o
  935. .PHONY : library/pkcs12.o
  936. # target to build an object file
  937. library/pkcs12.c.o:
  938. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs12.c.o
  939. .PHONY : library/pkcs12.c.o
  940. library/pkcs12.i: library/pkcs12.c.i
  941. .PHONY : library/pkcs12.i
  942. # target to preprocess a source file
  943. library/pkcs12.c.i:
  944. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs12.c.i
  945. .PHONY : library/pkcs12.c.i
  946. library/pkcs12.s: library/pkcs12.c.s
  947. .PHONY : library/pkcs12.s
  948. # target to generate assembly for a file
  949. library/pkcs12.c.s:
  950. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs12.c.s
  951. .PHONY : library/pkcs12.c.s
  952. library/pkcs5.o: library/pkcs5.c.o
  953. .PHONY : library/pkcs5.o
  954. # target to build an object file
  955. library/pkcs5.c.o:
  956. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs5.c.o
  957. .PHONY : library/pkcs5.c.o
  958. library/pkcs5.i: library/pkcs5.c.i
  959. .PHONY : library/pkcs5.i
  960. # target to preprocess a source file
  961. library/pkcs5.c.i:
  962. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs5.c.i
  963. .PHONY : library/pkcs5.c.i
  964. library/pkcs5.s: library/pkcs5.c.s
  965. .PHONY : library/pkcs5.s
  966. # target to generate assembly for a file
  967. library/pkcs5.c.s:
  968. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkcs5.c.s
  969. .PHONY : library/pkcs5.c.s
  970. library/pkparse.o: library/pkparse.c.o
  971. .PHONY : library/pkparse.o
  972. # target to build an object file
  973. library/pkparse.c.o:
  974. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkparse.c.o
  975. .PHONY : library/pkparse.c.o
  976. library/pkparse.i: library/pkparse.c.i
  977. .PHONY : library/pkparse.i
  978. # target to preprocess a source file
  979. library/pkparse.c.i:
  980. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkparse.c.i
  981. .PHONY : library/pkparse.c.i
  982. library/pkparse.s: library/pkparse.c.s
  983. .PHONY : library/pkparse.s
  984. # target to generate assembly for a file
  985. library/pkparse.c.s:
  986. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkparse.c.s
  987. .PHONY : library/pkparse.c.s
  988. library/pkwrite.o: library/pkwrite.c.o
  989. .PHONY : library/pkwrite.o
  990. # target to build an object file
  991. library/pkwrite.c.o:
  992. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkwrite.c.o
  993. .PHONY : library/pkwrite.c.o
  994. library/pkwrite.i: library/pkwrite.c.i
  995. .PHONY : library/pkwrite.i
  996. # target to preprocess a source file
  997. library/pkwrite.c.i:
  998. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkwrite.c.i
  999. .PHONY : library/pkwrite.c.i
  1000. library/pkwrite.s: library/pkwrite.c.s
  1001. .PHONY : library/pkwrite.s
  1002. # target to generate assembly for a file
  1003. library/pkwrite.c.s:
  1004. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/pkwrite.c.s
  1005. .PHONY : library/pkwrite.c.s
  1006. library/platform.o: library/platform.c.o
  1007. .PHONY : library/platform.o
  1008. # target to build an object file
  1009. library/platform.c.o:
  1010. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform.c.o
  1011. .PHONY : library/platform.c.o
  1012. library/platform.i: library/platform.c.i
  1013. .PHONY : library/platform.i
  1014. # target to preprocess a source file
  1015. library/platform.c.i:
  1016. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform.c.i
  1017. .PHONY : library/platform.c.i
  1018. library/platform.s: library/platform.c.s
  1019. .PHONY : library/platform.s
  1020. # target to generate assembly for a file
  1021. library/platform.c.s:
  1022. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform.c.s
  1023. .PHONY : library/platform.c.s
  1024. library/platform_util.o: library/platform_util.c.o
  1025. .PHONY : library/platform_util.o
  1026. # target to build an object file
  1027. library/platform_util.c.o:
  1028. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform_util.c.o
  1029. .PHONY : library/platform_util.c.o
  1030. library/platform_util.i: library/platform_util.c.i
  1031. .PHONY : library/platform_util.i
  1032. # target to preprocess a source file
  1033. library/platform_util.c.i:
  1034. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform_util.c.i
  1035. .PHONY : library/platform_util.c.i
  1036. library/platform_util.s: library/platform_util.c.s
  1037. .PHONY : library/platform_util.s
  1038. # target to generate assembly for a file
  1039. library/platform_util.c.s:
  1040. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/platform_util.c.s
  1041. .PHONY : library/platform_util.c.s
  1042. library/poly1305.o: library/poly1305.c.o
  1043. .PHONY : library/poly1305.o
  1044. # target to build an object file
  1045. library/poly1305.c.o:
  1046. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/poly1305.c.o
  1047. .PHONY : library/poly1305.c.o
  1048. library/poly1305.i: library/poly1305.c.i
  1049. .PHONY : library/poly1305.i
  1050. # target to preprocess a source file
  1051. library/poly1305.c.i:
  1052. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/poly1305.c.i
  1053. .PHONY : library/poly1305.c.i
  1054. library/poly1305.s: library/poly1305.c.s
  1055. .PHONY : library/poly1305.s
  1056. # target to generate assembly for a file
  1057. library/poly1305.c.s:
  1058. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/poly1305.c.s
  1059. .PHONY : library/poly1305.c.s
  1060. library/ripemd160.o: library/ripemd160.c.o
  1061. .PHONY : library/ripemd160.o
  1062. # target to build an object file
  1063. library/ripemd160.c.o:
  1064. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ripemd160.c.o
  1065. .PHONY : library/ripemd160.c.o
  1066. library/ripemd160.i: library/ripemd160.c.i
  1067. .PHONY : library/ripemd160.i
  1068. # target to preprocess a source file
  1069. library/ripemd160.c.i:
  1070. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ripemd160.c.i
  1071. .PHONY : library/ripemd160.c.i
  1072. library/ripemd160.s: library/ripemd160.c.s
  1073. .PHONY : library/ripemd160.s
  1074. # target to generate assembly for a file
  1075. library/ripemd160.c.s:
  1076. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ripemd160.c.s
  1077. .PHONY : library/ripemd160.c.s
  1078. library/rsa.o: library/rsa.c.o
  1079. .PHONY : library/rsa.o
  1080. # target to build an object file
  1081. library/rsa.c.o:
  1082. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa.c.o
  1083. .PHONY : library/rsa.c.o
  1084. library/rsa.i: library/rsa.c.i
  1085. .PHONY : library/rsa.i
  1086. # target to preprocess a source file
  1087. library/rsa.c.i:
  1088. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa.c.i
  1089. .PHONY : library/rsa.c.i
  1090. library/rsa.s: library/rsa.c.s
  1091. .PHONY : library/rsa.s
  1092. # target to generate assembly for a file
  1093. library/rsa.c.s:
  1094. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa.c.s
  1095. .PHONY : library/rsa.c.s
  1096. library/rsa_internal.o: library/rsa_internal.c.o
  1097. .PHONY : library/rsa_internal.o
  1098. # target to build an object file
  1099. library/rsa_internal.c.o:
  1100. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa_internal.c.o
  1101. .PHONY : library/rsa_internal.c.o
  1102. library/rsa_internal.i: library/rsa_internal.c.i
  1103. .PHONY : library/rsa_internal.i
  1104. # target to preprocess a source file
  1105. library/rsa_internal.c.i:
  1106. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa_internal.c.i
  1107. .PHONY : library/rsa_internal.c.i
  1108. library/rsa_internal.s: library/rsa_internal.c.s
  1109. .PHONY : library/rsa_internal.s
  1110. # target to generate assembly for a file
  1111. library/rsa_internal.c.s:
  1112. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/rsa_internal.c.s
  1113. .PHONY : library/rsa_internal.c.s
  1114. library/sha1.o: library/sha1.c.o
  1115. .PHONY : library/sha1.o
  1116. # target to build an object file
  1117. library/sha1.c.o:
  1118. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha1.c.o
  1119. .PHONY : library/sha1.c.o
  1120. library/sha1.i: library/sha1.c.i
  1121. .PHONY : library/sha1.i
  1122. # target to preprocess a source file
  1123. library/sha1.c.i:
  1124. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha1.c.i
  1125. .PHONY : library/sha1.c.i
  1126. library/sha1.s: library/sha1.c.s
  1127. .PHONY : library/sha1.s
  1128. # target to generate assembly for a file
  1129. library/sha1.c.s:
  1130. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha1.c.s
  1131. .PHONY : library/sha1.c.s
  1132. library/sha256.o: library/sha256.c.o
  1133. .PHONY : library/sha256.o
  1134. # target to build an object file
  1135. library/sha256.c.o:
  1136. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha256.c.o
  1137. .PHONY : library/sha256.c.o
  1138. library/sha256.i: library/sha256.c.i
  1139. .PHONY : library/sha256.i
  1140. # target to preprocess a source file
  1141. library/sha256.c.i:
  1142. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha256.c.i
  1143. .PHONY : library/sha256.c.i
  1144. library/sha256.s: library/sha256.c.s
  1145. .PHONY : library/sha256.s
  1146. # target to generate assembly for a file
  1147. library/sha256.c.s:
  1148. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha256.c.s
  1149. .PHONY : library/sha256.c.s
  1150. library/sha512.o: library/sha512.c.o
  1151. .PHONY : library/sha512.o
  1152. # target to build an object file
  1153. library/sha512.c.o:
  1154. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha512.c.o
  1155. .PHONY : library/sha512.c.o
  1156. library/sha512.i: library/sha512.c.i
  1157. .PHONY : library/sha512.i
  1158. # target to preprocess a source file
  1159. library/sha512.c.i:
  1160. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha512.c.i
  1161. .PHONY : library/sha512.c.i
  1162. library/sha512.s: library/sha512.c.s
  1163. .PHONY : library/sha512.s
  1164. # target to generate assembly for a file
  1165. library/sha512.c.s:
  1166. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/sha512.c.s
  1167. .PHONY : library/sha512.c.s
  1168. library/ssl_cache.o: library/ssl_cache.c.o
  1169. .PHONY : library/ssl_cache.o
  1170. # target to build an object file
  1171. library/ssl_cache.c.o:
  1172. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cache.c.o
  1173. .PHONY : library/ssl_cache.c.o
  1174. library/ssl_cache.i: library/ssl_cache.c.i
  1175. .PHONY : library/ssl_cache.i
  1176. # target to preprocess a source file
  1177. library/ssl_cache.c.i:
  1178. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cache.c.i
  1179. .PHONY : library/ssl_cache.c.i
  1180. library/ssl_cache.s: library/ssl_cache.c.s
  1181. .PHONY : library/ssl_cache.s
  1182. # target to generate assembly for a file
  1183. library/ssl_cache.c.s:
  1184. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cache.c.s
  1185. .PHONY : library/ssl_cache.c.s
  1186. library/ssl_ciphersuites.o: library/ssl_ciphersuites.c.o
  1187. .PHONY : library/ssl_ciphersuites.o
  1188. # target to build an object file
  1189. library/ssl_ciphersuites.c.o:
  1190. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ciphersuites.c.o
  1191. .PHONY : library/ssl_ciphersuites.c.o
  1192. library/ssl_ciphersuites.i: library/ssl_ciphersuites.c.i
  1193. .PHONY : library/ssl_ciphersuites.i
  1194. # target to preprocess a source file
  1195. library/ssl_ciphersuites.c.i:
  1196. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ciphersuites.c.i
  1197. .PHONY : library/ssl_ciphersuites.c.i
  1198. library/ssl_ciphersuites.s: library/ssl_ciphersuites.c.s
  1199. .PHONY : library/ssl_ciphersuites.s
  1200. # target to generate assembly for a file
  1201. library/ssl_ciphersuites.c.s:
  1202. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ciphersuites.c.s
  1203. .PHONY : library/ssl_ciphersuites.c.s
  1204. library/ssl_cli.o: library/ssl_cli.c.o
  1205. .PHONY : library/ssl_cli.o
  1206. # target to build an object file
  1207. library/ssl_cli.c.o:
  1208. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cli.c.o
  1209. .PHONY : library/ssl_cli.c.o
  1210. library/ssl_cli.i: library/ssl_cli.c.i
  1211. .PHONY : library/ssl_cli.i
  1212. # target to preprocess a source file
  1213. library/ssl_cli.c.i:
  1214. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cli.c.i
  1215. .PHONY : library/ssl_cli.c.i
  1216. library/ssl_cli.s: library/ssl_cli.c.s
  1217. .PHONY : library/ssl_cli.s
  1218. # target to generate assembly for a file
  1219. library/ssl_cli.c.s:
  1220. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cli.c.s
  1221. .PHONY : library/ssl_cli.c.s
  1222. library/ssl_cookie.o: library/ssl_cookie.c.o
  1223. .PHONY : library/ssl_cookie.o
  1224. # target to build an object file
  1225. library/ssl_cookie.c.o:
  1226. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cookie.c.o
  1227. .PHONY : library/ssl_cookie.c.o
  1228. library/ssl_cookie.i: library/ssl_cookie.c.i
  1229. .PHONY : library/ssl_cookie.i
  1230. # target to preprocess a source file
  1231. library/ssl_cookie.c.i:
  1232. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cookie.c.i
  1233. .PHONY : library/ssl_cookie.c.i
  1234. library/ssl_cookie.s: library/ssl_cookie.c.s
  1235. .PHONY : library/ssl_cookie.s
  1236. # target to generate assembly for a file
  1237. library/ssl_cookie.c.s:
  1238. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_cookie.c.s
  1239. .PHONY : library/ssl_cookie.c.s
  1240. library/ssl_srv.o: library/ssl_srv.c.o
  1241. .PHONY : library/ssl_srv.o
  1242. # target to build an object file
  1243. library/ssl_srv.c.o:
  1244. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_srv.c.o
  1245. .PHONY : library/ssl_srv.c.o
  1246. library/ssl_srv.i: library/ssl_srv.c.i
  1247. .PHONY : library/ssl_srv.i
  1248. # target to preprocess a source file
  1249. library/ssl_srv.c.i:
  1250. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_srv.c.i
  1251. .PHONY : library/ssl_srv.c.i
  1252. library/ssl_srv.s: library/ssl_srv.c.s
  1253. .PHONY : library/ssl_srv.s
  1254. # target to generate assembly for a file
  1255. library/ssl_srv.c.s:
  1256. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_srv.c.s
  1257. .PHONY : library/ssl_srv.c.s
  1258. library/ssl_ticket.o: library/ssl_ticket.c.o
  1259. .PHONY : library/ssl_ticket.o
  1260. # target to build an object file
  1261. library/ssl_ticket.c.o:
  1262. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ticket.c.o
  1263. .PHONY : library/ssl_ticket.c.o
  1264. library/ssl_ticket.i: library/ssl_ticket.c.i
  1265. .PHONY : library/ssl_ticket.i
  1266. # target to preprocess a source file
  1267. library/ssl_ticket.c.i:
  1268. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ticket.c.i
  1269. .PHONY : library/ssl_ticket.c.i
  1270. library/ssl_ticket.s: library/ssl_ticket.c.s
  1271. .PHONY : library/ssl_ticket.s
  1272. # target to generate assembly for a file
  1273. library/ssl_ticket.c.s:
  1274. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_ticket.c.s
  1275. .PHONY : library/ssl_ticket.c.s
  1276. library/ssl_tls.o: library/ssl_tls.c.o
  1277. .PHONY : library/ssl_tls.o
  1278. # target to build an object file
  1279. library/ssl_tls.c.o:
  1280. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_tls.c.o
  1281. .PHONY : library/ssl_tls.c.o
  1282. library/ssl_tls.i: library/ssl_tls.c.i
  1283. .PHONY : library/ssl_tls.i
  1284. # target to preprocess a source file
  1285. library/ssl_tls.c.i:
  1286. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_tls.c.i
  1287. .PHONY : library/ssl_tls.c.i
  1288. library/ssl_tls.s: library/ssl_tls.c.s
  1289. .PHONY : library/ssl_tls.s
  1290. # target to generate assembly for a file
  1291. library/ssl_tls.c.s:
  1292. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/ssl_tls.c.s
  1293. .PHONY : library/ssl_tls.c.s
  1294. library/threading.o: library/threading.c.o
  1295. .PHONY : library/threading.o
  1296. # target to build an object file
  1297. library/threading.c.o:
  1298. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/threading.c.o
  1299. .PHONY : library/threading.c.o
  1300. library/threading.i: library/threading.c.i
  1301. .PHONY : library/threading.i
  1302. # target to preprocess a source file
  1303. library/threading.c.i:
  1304. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/threading.c.i
  1305. .PHONY : library/threading.c.i
  1306. library/threading.s: library/threading.c.s
  1307. .PHONY : library/threading.s
  1308. # target to generate assembly for a file
  1309. library/threading.c.s:
  1310. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/threading.c.s
  1311. .PHONY : library/threading.c.s
  1312. library/timing.o: library/timing.c.o
  1313. .PHONY : library/timing.o
  1314. # target to build an object file
  1315. library/timing.c.o:
  1316. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/timing.c.o
  1317. .PHONY : library/timing.c.o
  1318. library/timing.i: library/timing.c.i
  1319. .PHONY : library/timing.i
  1320. # target to preprocess a source file
  1321. library/timing.c.i:
  1322. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/timing.c.i
  1323. .PHONY : library/timing.c.i
  1324. library/timing.s: library/timing.c.s
  1325. .PHONY : library/timing.s
  1326. # target to generate assembly for a file
  1327. library/timing.c.s:
  1328. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/timing.c.s
  1329. .PHONY : library/timing.c.s
  1330. library/version.o: library/version.c.o
  1331. .PHONY : library/version.o
  1332. # target to build an object file
  1333. library/version.c.o:
  1334. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version.c.o
  1335. .PHONY : library/version.c.o
  1336. library/version.i: library/version.c.i
  1337. .PHONY : library/version.i
  1338. # target to preprocess a source file
  1339. library/version.c.i:
  1340. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version.c.i
  1341. .PHONY : library/version.c.i
  1342. library/version.s: library/version.c.s
  1343. .PHONY : library/version.s
  1344. # target to generate assembly for a file
  1345. library/version.c.s:
  1346. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version.c.s
  1347. .PHONY : library/version.c.s
  1348. library/version_features.o: library/version_features.c.o
  1349. .PHONY : library/version_features.o
  1350. # target to build an object file
  1351. library/version_features.c.o:
  1352. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version_features.c.o
  1353. .PHONY : library/version_features.c.o
  1354. library/version_features.i: library/version_features.c.i
  1355. .PHONY : library/version_features.i
  1356. # target to preprocess a source file
  1357. library/version_features.c.i:
  1358. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version_features.c.i
  1359. .PHONY : library/version_features.c.i
  1360. library/version_features.s: library/version_features.c.s
  1361. .PHONY : library/version_features.s
  1362. # target to generate assembly for a file
  1363. library/version_features.c.s:
  1364. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/version_features.c.s
  1365. .PHONY : library/version_features.c.s
  1366. library/x509.o: library/x509.c.o
  1367. .PHONY : library/x509.o
  1368. # target to build an object file
  1369. library/x509.c.o:
  1370. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509.c.o
  1371. .PHONY : library/x509.c.o
  1372. library/x509.i: library/x509.c.i
  1373. .PHONY : library/x509.i
  1374. # target to preprocess a source file
  1375. library/x509.c.i:
  1376. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509.c.i
  1377. .PHONY : library/x509.c.i
  1378. library/x509.s: library/x509.c.s
  1379. .PHONY : library/x509.s
  1380. # target to generate assembly for a file
  1381. library/x509.c.s:
  1382. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509.c.s
  1383. .PHONY : library/x509.c.s
  1384. library/x509_create.o: library/x509_create.c.o
  1385. .PHONY : library/x509_create.o
  1386. # target to build an object file
  1387. library/x509_create.c.o:
  1388. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_create.c.o
  1389. .PHONY : library/x509_create.c.o
  1390. library/x509_create.i: library/x509_create.c.i
  1391. .PHONY : library/x509_create.i
  1392. # target to preprocess a source file
  1393. library/x509_create.c.i:
  1394. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_create.c.i
  1395. .PHONY : library/x509_create.c.i
  1396. library/x509_create.s: library/x509_create.c.s
  1397. .PHONY : library/x509_create.s
  1398. # target to generate assembly for a file
  1399. library/x509_create.c.s:
  1400. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_create.c.s
  1401. .PHONY : library/x509_create.c.s
  1402. library/x509_crl.o: library/x509_crl.c.o
  1403. .PHONY : library/x509_crl.o
  1404. # target to build an object file
  1405. library/x509_crl.c.o:
  1406. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crl.c.o
  1407. .PHONY : library/x509_crl.c.o
  1408. library/x509_crl.i: library/x509_crl.c.i
  1409. .PHONY : library/x509_crl.i
  1410. # target to preprocess a source file
  1411. library/x509_crl.c.i:
  1412. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crl.c.i
  1413. .PHONY : library/x509_crl.c.i
  1414. library/x509_crl.s: library/x509_crl.c.s
  1415. .PHONY : library/x509_crl.s
  1416. # target to generate assembly for a file
  1417. library/x509_crl.c.s:
  1418. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crl.c.s
  1419. .PHONY : library/x509_crl.c.s
  1420. library/x509_crt.o: library/x509_crt.c.o
  1421. .PHONY : library/x509_crt.o
  1422. # target to build an object file
  1423. library/x509_crt.c.o:
  1424. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crt.c.o
  1425. .PHONY : library/x509_crt.c.o
  1426. library/x509_crt.i: library/x509_crt.c.i
  1427. .PHONY : library/x509_crt.i
  1428. # target to preprocess a source file
  1429. library/x509_crt.c.i:
  1430. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crt.c.i
  1431. .PHONY : library/x509_crt.c.i
  1432. library/x509_crt.s: library/x509_crt.c.s
  1433. .PHONY : library/x509_crt.s
  1434. # target to generate assembly for a file
  1435. library/x509_crt.c.s:
  1436. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_crt.c.s
  1437. .PHONY : library/x509_crt.c.s
  1438. library/x509_csr.o: library/x509_csr.c.o
  1439. .PHONY : library/x509_csr.o
  1440. # target to build an object file
  1441. library/x509_csr.c.o:
  1442. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_csr.c.o
  1443. .PHONY : library/x509_csr.c.o
  1444. library/x509_csr.i: library/x509_csr.c.i
  1445. .PHONY : library/x509_csr.i
  1446. # target to preprocess a source file
  1447. library/x509_csr.c.i:
  1448. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_csr.c.i
  1449. .PHONY : library/x509_csr.c.i
  1450. library/x509_csr.s: library/x509_csr.c.s
  1451. .PHONY : library/x509_csr.s
  1452. # target to generate assembly for a file
  1453. library/x509_csr.c.s:
  1454. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509_csr.c.s
  1455. .PHONY : library/x509_csr.c.s
  1456. library/x509write_crt.o: library/x509write_crt.c.o
  1457. .PHONY : library/x509write_crt.o
  1458. # target to build an object file
  1459. library/x509write_crt.c.o:
  1460. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_crt.c.o
  1461. .PHONY : library/x509write_crt.c.o
  1462. library/x509write_crt.i: library/x509write_crt.c.i
  1463. .PHONY : library/x509write_crt.i
  1464. # target to preprocess a source file
  1465. library/x509write_crt.c.i:
  1466. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_crt.c.i
  1467. .PHONY : library/x509write_crt.c.i
  1468. library/x509write_crt.s: library/x509write_crt.c.s
  1469. .PHONY : library/x509write_crt.s
  1470. # target to generate assembly for a file
  1471. library/x509write_crt.c.s:
  1472. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_crt.c.s
  1473. .PHONY : library/x509write_crt.c.s
  1474. library/x509write_csr.o: library/x509write_csr.c.o
  1475. .PHONY : library/x509write_csr.o
  1476. # target to build an object file
  1477. library/x509write_csr.c.o:
  1478. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_csr.c.o
  1479. .PHONY : library/x509write_csr.c.o
  1480. library/x509write_csr.i: library/x509write_csr.c.i
  1481. .PHONY : library/x509write_csr.i
  1482. # target to preprocess a source file
  1483. library/x509write_csr.c.i:
  1484. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_csr.c.i
  1485. .PHONY : library/x509write_csr.c.i
  1486. library/x509write_csr.s: library/x509write_csr.c.s
  1487. .PHONY : library/x509write_csr.s
  1488. # target to generate assembly for a file
  1489. library/x509write_csr.c.s:
  1490. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/x509write_csr.c.s
  1491. .PHONY : library/x509write_csr.c.s
  1492. library/xtea.o: library/xtea.c.o
  1493. .PHONY : library/xtea.o
  1494. # target to build an object file
  1495. library/xtea.c.o:
  1496. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/xtea.c.o
  1497. .PHONY : library/xtea.c.o
  1498. library/xtea.i: library/xtea.c.i
  1499. .PHONY : library/xtea.i
  1500. # target to preprocess a source file
  1501. library/xtea.c.i:
  1502. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/xtea.c.i
  1503. .PHONY : library/xtea.c.i
  1504. library/xtea.s: library/xtea.c.s
  1505. .PHONY : library/xtea.s
  1506. # target to generate assembly for a file
  1507. library/xtea.c.s:
  1508. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/library/xtea.c.s
  1509. .PHONY : library/xtea.c.s
  1510. wrapper/entropy_hardware_alt.o: wrapper/entropy_hardware_alt.c.o
  1511. .PHONY : wrapper/entropy_hardware_alt.o
  1512. # target to build an object file
  1513. wrapper/entropy_hardware_alt.c.o:
  1514. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/entropy_hardware_alt.c.o
  1515. .PHONY : wrapper/entropy_hardware_alt.c.o
  1516. wrapper/entropy_hardware_alt.i: wrapper/entropy_hardware_alt.c.i
  1517. .PHONY : wrapper/entropy_hardware_alt.i
  1518. # target to preprocess a source file
  1519. wrapper/entropy_hardware_alt.c.i:
  1520. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/entropy_hardware_alt.c.i
  1521. .PHONY : wrapper/entropy_hardware_alt.c.i
  1522. wrapper/entropy_hardware_alt.s: wrapper/entropy_hardware_alt.c.s
  1523. .PHONY : wrapper/entropy_hardware_alt.s
  1524. # target to generate assembly for a file
  1525. wrapper/entropy_hardware_alt.c.s:
  1526. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/entropy_hardware_alt.c.s
  1527. .PHONY : wrapper/entropy_hardware_alt.c.s
  1528. wrapper/net_sockets_alt.o: wrapper/net_sockets_alt.c.o
  1529. .PHONY : wrapper/net_sockets_alt.o
  1530. # target to build an object file
  1531. wrapper/net_sockets_alt.c.o:
  1532. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/net_sockets_alt.c.o
  1533. .PHONY : wrapper/net_sockets_alt.c.o
  1534. wrapper/net_sockets_alt.i: wrapper/net_sockets_alt.c.i
  1535. .PHONY : wrapper/net_sockets_alt.i
  1536. # target to preprocess a source file
  1537. wrapper/net_sockets_alt.c.i:
  1538. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/net_sockets_alt.c.i
  1539. .PHONY : wrapper/net_sockets_alt.c.i
  1540. wrapper/net_sockets_alt.s: wrapper/net_sockets_alt.c.s
  1541. .PHONY : wrapper/net_sockets_alt.s
  1542. # target to generate assembly for a file
  1543. wrapper/net_sockets_alt.c.s:
  1544. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/net_sockets_alt.c.s
  1545. .PHONY : wrapper/net_sockets_alt.c.s
  1546. wrapper/timing_alt.o: wrapper/timing_alt.c.o
  1547. .PHONY : wrapper/timing_alt.o
  1548. # target to build an object file
  1549. wrapper/timing_alt.c.o:
  1550. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/timing_alt.c.o
  1551. .PHONY : wrapper/timing_alt.c.o
  1552. wrapper/timing_alt.i: wrapper/timing_alt.c.i
  1553. .PHONY : wrapper/timing_alt.i
  1554. # target to preprocess a source file
  1555. wrapper/timing_alt.c.i:
  1556. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/timing_alt.c.i
  1557. .PHONY : wrapper/timing_alt.c.i
  1558. wrapper/timing_alt.s: wrapper/timing_alt.c.s
  1559. .PHONY : wrapper/timing_alt.s
  1560. # target to generate assembly for a file
  1561. wrapper/timing_alt.c.s:
  1562. cd /home/book/hisi3518_lora/cmake-build-debug && $(MAKE) -f mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/build.make mqtt/mbedtls/CMakeFiles/mqtt_mbedtls.dir/wrapper/timing_alt.c.s
  1563. .PHONY : wrapper/timing_alt.c.s
  1564. # Help Target
  1565. help:
  1566. @echo "The following are some of the valid targets for this Makefile:"
  1567. @echo "... all (the default if no target is provided)"
  1568. @echo "... clean"
  1569. @echo "... depend"
  1570. @echo "... rebuild_cache"
  1571. @echo "... mqtt_mbedtls"
  1572. @echo "... edit_cache"
  1573. @echo "... library/aes.o"
  1574. @echo "... library/aes.i"
  1575. @echo "... library/aes.s"
  1576. @echo "... library/aesni.o"
  1577. @echo "... library/aesni.i"
  1578. @echo "... library/aesni.s"
  1579. @echo "... library/arc4.o"
  1580. @echo "... library/arc4.i"
  1581. @echo "... library/arc4.s"
  1582. @echo "... library/aria.o"
  1583. @echo "... library/aria.i"
  1584. @echo "... library/aria.s"
  1585. @echo "... library/asn1parse.o"
  1586. @echo "... library/asn1parse.i"
  1587. @echo "... library/asn1parse.s"
  1588. @echo "... library/asn1write.o"
  1589. @echo "... library/asn1write.i"
  1590. @echo "... library/asn1write.s"
  1591. @echo "... library/base64.o"
  1592. @echo "... library/base64.i"
  1593. @echo "... library/base64.s"
  1594. @echo "... library/bignum.o"
  1595. @echo "... library/bignum.i"
  1596. @echo "... library/bignum.s"
  1597. @echo "... library/blowfish.o"
  1598. @echo "... library/blowfish.i"
  1599. @echo "... library/blowfish.s"
  1600. @echo "... library/camellia.o"
  1601. @echo "... library/camellia.i"
  1602. @echo "... library/camellia.s"
  1603. @echo "... library/ccm.o"
  1604. @echo "... library/ccm.i"
  1605. @echo "... library/ccm.s"
  1606. @echo "... library/certs.o"
  1607. @echo "... library/certs.i"
  1608. @echo "... library/certs.s"
  1609. @echo "... library/chacha20.o"
  1610. @echo "... library/chacha20.i"
  1611. @echo "... library/chacha20.s"
  1612. @echo "... library/chachapoly.o"
  1613. @echo "... library/chachapoly.i"
  1614. @echo "... library/chachapoly.s"
  1615. @echo "... library/cipher.o"
  1616. @echo "... library/cipher.i"
  1617. @echo "... library/cipher.s"
  1618. @echo "... library/cipher_wrap.o"
  1619. @echo "... library/cipher_wrap.i"
  1620. @echo "... library/cipher_wrap.s"
  1621. @echo "... library/cmac.o"
  1622. @echo "... library/cmac.i"
  1623. @echo "... library/cmac.s"
  1624. @echo "... library/ctr_drbg.o"
  1625. @echo "... library/ctr_drbg.i"
  1626. @echo "... library/ctr_drbg.s"
  1627. @echo "... library/debug.o"
  1628. @echo "... library/debug.i"
  1629. @echo "... library/debug.s"
  1630. @echo "... library/des.o"
  1631. @echo "... library/des.i"
  1632. @echo "... library/des.s"
  1633. @echo "... library/dhm.o"
  1634. @echo "... library/dhm.i"
  1635. @echo "... library/dhm.s"
  1636. @echo "... library/ecdh.o"
  1637. @echo "... library/ecdh.i"
  1638. @echo "... library/ecdh.s"
  1639. @echo "... library/ecdsa.o"
  1640. @echo "... library/ecdsa.i"
  1641. @echo "... library/ecdsa.s"
  1642. @echo "... library/ecjpake.o"
  1643. @echo "... library/ecjpake.i"
  1644. @echo "... library/ecjpake.s"
  1645. @echo "... library/ecp.o"
  1646. @echo "... library/ecp.i"
  1647. @echo "... library/ecp.s"
  1648. @echo "... library/ecp_curves.o"
  1649. @echo "... library/ecp_curves.i"
  1650. @echo "... library/ecp_curves.s"
  1651. @echo "... library/entropy.o"
  1652. @echo "... library/entropy.i"
  1653. @echo "... library/entropy.s"
  1654. @echo "... library/entropy_poll.o"
  1655. @echo "... library/entropy_poll.i"
  1656. @echo "... library/entropy_poll.s"
  1657. @echo "... library/error.o"
  1658. @echo "... library/error.i"
  1659. @echo "... library/error.s"
  1660. @echo "... library/gcm.o"
  1661. @echo "... library/gcm.i"
  1662. @echo "... library/gcm.s"
  1663. @echo "... library/havege.o"
  1664. @echo "... library/havege.i"
  1665. @echo "... library/havege.s"
  1666. @echo "... library/hkdf.o"
  1667. @echo "... library/hkdf.i"
  1668. @echo "... library/hkdf.s"
  1669. @echo "... library/hmac_drbg.o"
  1670. @echo "... library/hmac_drbg.i"
  1671. @echo "... library/hmac_drbg.s"
  1672. @echo "... library/md.o"
  1673. @echo "... library/md.i"
  1674. @echo "... library/md.s"
  1675. @echo "... library/md2.o"
  1676. @echo "... library/md2.i"
  1677. @echo "... library/md2.s"
  1678. @echo "... library/md4.o"
  1679. @echo "... library/md4.i"
  1680. @echo "... library/md4.s"
  1681. @echo "... library/md5.o"
  1682. @echo "... library/md5.i"
  1683. @echo "... library/md5.s"
  1684. @echo "... library/md_wrap.o"
  1685. @echo "... library/md_wrap.i"
  1686. @echo "... library/md_wrap.s"
  1687. @echo "... library/memory_buffer_alloc.o"
  1688. @echo "... library/memory_buffer_alloc.i"
  1689. @echo "... library/memory_buffer_alloc.s"
  1690. @echo "... library/net_sockets.o"
  1691. @echo "... library/net_sockets.i"
  1692. @echo "... library/net_sockets.s"
  1693. @echo "... library/nist_kw.o"
  1694. @echo "... library/nist_kw.i"
  1695. @echo "... library/nist_kw.s"
  1696. @echo "... library/oid.o"
  1697. @echo "... library/oid.i"
  1698. @echo "... library/oid.s"
  1699. @echo "... library/padlock.o"
  1700. @echo "... library/padlock.i"
  1701. @echo "... library/padlock.s"
  1702. @echo "... library/pem.o"
  1703. @echo "... library/pem.i"
  1704. @echo "... library/pem.s"
  1705. @echo "... library/pk.o"
  1706. @echo "... library/pk.i"
  1707. @echo "... library/pk.s"
  1708. @echo "... library/pk_wrap.o"
  1709. @echo "... library/pk_wrap.i"
  1710. @echo "... library/pk_wrap.s"
  1711. @echo "... library/pkcs11.o"
  1712. @echo "... library/pkcs11.i"
  1713. @echo "... library/pkcs11.s"
  1714. @echo "... library/pkcs12.o"
  1715. @echo "... library/pkcs12.i"
  1716. @echo "... library/pkcs12.s"
  1717. @echo "... library/pkcs5.o"
  1718. @echo "... library/pkcs5.i"
  1719. @echo "... library/pkcs5.s"
  1720. @echo "... library/pkparse.o"
  1721. @echo "... library/pkparse.i"
  1722. @echo "... library/pkparse.s"
  1723. @echo "... library/pkwrite.o"
  1724. @echo "... library/pkwrite.i"
  1725. @echo "... library/pkwrite.s"
  1726. @echo "... library/platform.o"
  1727. @echo "... library/platform.i"
  1728. @echo "... library/platform.s"
  1729. @echo "... library/platform_util.o"
  1730. @echo "... library/platform_util.i"
  1731. @echo "... library/platform_util.s"
  1732. @echo "... library/poly1305.o"
  1733. @echo "... library/poly1305.i"
  1734. @echo "... library/poly1305.s"
  1735. @echo "... library/ripemd160.o"
  1736. @echo "... library/ripemd160.i"
  1737. @echo "... library/ripemd160.s"
  1738. @echo "... library/rsa.o"
  1739. @echo "... library/rsa.i"
  1740. @echo "... library/rsa.s"
  1741. @echo "... library/rsa_internal.o"
  1742. @echo "... library/rsa_internal.i"
  1743. @echo "... library/rsa_internal.s"
  1744. @echo "... library/sha1.o"
  1745. @echo "... library/sha1.i"
  1746. @echo "... library/sha1.s"
  1747. @echo "... library/sha256.o"
  1748. @echo "... library/sha256.i"
  1749. @echo "... library/sha256.s"
  1750. @echo "... library/sha512.o"
  1751. @echo "... library/sha512.i"
  1752. @echo "... library/sha512.s"
  1753. @echo "... library/ssl_cache.o"
  1754. @echo "... library/ssl_cache.i"
  1755. @echo "... library/ssl_cache.s"
  1756. @echo "... library/ssl_ciphersuites.o"
  1757. @echo "... library/ssl_ciphersuites.i"
  1758. @echo "... library/ssl_ciphersuites.s"
  1759. @echo "... library/ssl_cli.o"
  1760. @echo "... library/ssl_cli.i"
  1761. @echo "... library/ssl_cli.s"
  1762. @echo "... library/ssl_cookie.o"
  1763. @echo "... library/ssl_cookie.i"
  1764. @echo "... library/ssl_cookie.s"
  1765. @echo "... library/ssl_srv.o"
  1766. @echo "... library/ssl_srv.i"
  1767. @echo "... library/ssl_srv.s"
  1768. @echo "... library/ssl_ticket.o"
  1769. @echo "... library/ssl_ticket.i"
  1770. @echo "... library/ssl_ticket.s"
  1771. @echo "... library/ssl_tls.o"
  1772. @echo "... library/ssl_tls.i"
  1773. @echo "... library/ssl_tls.s"
  1774. @echo "... library/threading.o"
  1775. @echo "... library/threading.i"
  1776. @echo "... library/threading.s"
  1777. @echo "... library/timing.o"
  1778. @echo "... library/timing.i"
  1779. @echo "... library/timing.s"
  1780. @echo "... library/version.o"
  1781. @echo "... library/version.i"
  1782. @echo "... library/version.s"
  1783. @echo "... library/version_features.o"
  1784. @echo "... library/version_features.i"
  1785. @echo "... library/version_features.s"
  1786. @echo "... library/x509.o"
  1787. @echo "... library/x509.i"
  1788. @echo "... library/x509.s"
  1789. @echo "... library/x509_create.o"
  1790. @echo "... library/x509_create.i"
  1791. @echo "... library/x509_create.s"
  1792. @echo "... library/x509_crl.o"
  1793. @echo "... library/x509_crl.i"
  1794. @echo "... library/x509_crl.s"
  1795. @echo "... library/x509_crt.o"
  1796. @echo "... library/x509_crt.i"
  1797. @echo "... library/x509_crt.s"
  1798. @echo "... library/x509_csr.o"
  1799. @echo "... library/x509_csr.i"
  1800. @echo "... library/x509_csr.s"
  1801. @echo "... library/x509write_crt.o"
  1802. @echo "... library/x509write_crt.i"
  1803. @echo "... library/x509write_crt.s"
  1804. @echo "... library/x509write_csr.o"
  1805. @echo "... library/x509write_csr.i"
  1806. @echo "... library/x509write_csr.s"
  1807. @echo "... library/xtea.o"
  1808. @echo "... library/xtea.i"
  1809. @echo "... library/xtea.s"
  1810. @echo "... wrapper/entropy_hardware_alt.o"
  1811. @echo "... wrapper/entropy_hardware_alt.i"
  1812. @echo "... wrapper/entropy_hardware_alt.s"
  1813. @echo "... wrapper/net_sockets_alt.o"
  1814. @echo "... wrapper/net_sockets_alt.i"
  1815. @echo "... wrapper/net_sockets_alt.s"
  1816. @echo "... wrapper/timing_alt.o"
  1817. @echo "... wrapper/timing_alt.i"
  1818. @echo "... wrapper/timing_alt.s"
  1819. .PHONY : help
  1820. #=============================================================================
  1821. # Special targets to cleanup operation of make.
  1822. # Special rule to run CMake to check the build system integrity.
  1823. # No rule that depends on this can have commands that come from listfiles
  1824. # because they might be regenerated.
  1825. cmake_check_build_system:
  1826. cd /home/book/hisi3518_lora/cmake-build-debug && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
  1827. .PHONY : cmake_check_build_system