mathematical 1.6.14 → 1.6.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -1
  3. data/Rakefile +31 -21
  4. data/ext/mathematical/extconf.rb +71 -69
  5. data/ext/mathematical/lasem/COPYING +118 -99
  6. data/ext/mathematical/lasem/{NEWS → NEWS.md} +10 -0
  7. data/ext/mathematical/lasem/README.md +65 -0
  8. data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +2 -2
  9. data/ext/mathematical/lasem/docs/meson.build +3 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/building.md +32 -0
  11. data/ext/mathematical/lasem/docs/reference/lasem/lasem.toml.in +47 -0
  12. data/ext/mathematical/lasem/docs/reference/lasem/meson.build +44 -0
  13. data/ext/mathematical/lasem/docs/reference/lasem/overview.md +24 -0
  14. data/ext/mathematical/lasem/docs/reference/lasem/urlmap.js +5 -0
  15. data/ext/mathematical/lasem/itex2mml/README.itex2MML +5 -2
  16. data/ext/mathematical/lasem/itex2mml/itex2MML.h +10 -10
  17. data/ext/mathematical/lasem/itex2mml/itex2MML.l +126 -27
  18. data/ext/mathematical/lasem/itex2mml/itex2MML.y +262 -99
  19. data/ext/mathematical/lasem/itex2mml/meson.build +17 -0
  20. data/ext/mathematical/lasem/lasem.doap +7 -7
  21. data/ext/mathematical/lasem/meson.build +46 -0
  22. data/ext/mathematical/lasem/meson_options.txt +5 -0
  23. data/ext/mathematical/lasem/org.lasem.Viewer.json +41 -0
  24. data/ext/mathematical/lasem/po/LINGUAS +0 -2
  25. data/ext/mathematical/lasem/po/eu.po +30 -66
  26. data/ext/mathematical/lasem/po/meson.build +4 -0
  27. data/ext/mathematical/lasem/src/lasemrender.c +1 -6
  28. data/ext/mathematical/lasem/src/lsm.c +2 -0
  29. data/ext/mathematical/lasem/src/lsmattributes.c +2 -5
  30. data/ext/mathematical/lasem/src/lsmmathmlglyphtableams.c +71 -7
  31. data/ext/mathematical/lasem/src/lsmmathmlitexelement.c +7 -5
  32. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.c +11 -1
  33. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.h +2 -1
  34. data/ext/mathematical/lasem/src/lsmmathmloperatorelement.c +6 -1
  35. data/ext/mathematical/lasem/src/lsmmathmlview.c +21 -3
  36. data/ext/mathematical/lasem/src/lsmmathmlview.h +2 -2
  37. data/ext/mathematical/lasem/src/lsmmisc.c +15 -0
  38. data/ext/mathematical/lasem/src/lsmmisc.h +32 -0
  39. data/ext/mathematical/lasem/src/lsmproperties.c +2 -5
  40. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +6 -3
  41. data/ext/mathematical/lasem/src/lsmsvgtraits.c +10 -1
  42. data/ext/mathematical/lasem/src/meson.build +321 -0
  43. data/ext/mathematical/lasem/subprojects/gi-docgen.wrap +6 -0
  44. data/ext/mathematical/lasem/tests/data/mathml/tex/misc/array.tex +3 -0
  45. data/ext/mathematical/lasem/tests/dom.c +0 -6
  46. data/ext/mathematical/lasem/tests/filter.c +8 -7
  47. data/ext/mathematical/lasem/tests/lasem.supp +185 -0
  48. data/ext/mathematical/lasem/tests/lsmtest.c +2 -9
  49. data/ext/mathematical/lasem/tests/meson.build +39 -0
  50. data/ext/mathematical/lasem/tests/str.c +0 -4
  51. data/ext/mathematical/lasem/tests/suite.c +0 -4
  52. data/ext/mathematical/lasem/viewer/meson.build +17 -0
  53. data/ext/mathematical/lasem/viewer/viewer.c +248 -0
  54. data/ext/mathematical/mtex2MML/script/tag +15 -14
  55. data/ext/mathematical/mtex2MML/src/lexer.l +4 -4
  56. data/ext/mathematical/mtex2MML/src/mtex2MML.h +7 -7
  57. data/ext/mathematical/mtex2MML/src/parser.y +5 -5
  58. data/ext/mathematical/mtex2MML/tests/clar.c +2 -2
  59. data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +2 -2
  60. data/lib/mathematical/configuration.rb +8 -4
  61. data/lib/mathematical/corrections.rb +3 -1
  62. data/lib/mathematical/validator.rb +11 -8
  63. data/lib/mathematical/version.rb +3 -1
  64. data/lib/mathematical.rb +21 -19
  65. data/mathematical.gemspec +21 -22
  66. metadata +36 -336
  67. data/ext/mathematical/lasem/AUTHORS +0 -1
  68. data/ext/mathematical/lasem/ChangeLog +0 -0
  69. data/ext/mathematical/lasem/MAINTAINERS +0 -3
  70. data/ext/mathematical/lasem/Makefile.am +0 -34
  71. data/ext/mathematical/lasem/Makefile.decl +0 -57
  72. data/ext/mathematical/lasem/README +0 -28
  73. data/ext/mathematical/lasem/RELEASING +0 -85
  74. data/ext/mathematical/lasem/autogen.sh +0 -180
  75. data/ext/mathematical/lasem/configure.ac +0 -139
  76. data/ext/mathematical/lasem/docs/Makefile.am +0 -14
  77. data/ext/mathematical/lasem/docs/reference/Makefile.am +0 -3
  78. data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +0 -205
  79. data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +0 -75
  80. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +0 -64
  81. data/ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt +0 -213
  82. data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +0 -110
  83. data/ext/mathematical/lasem/itex2mml/Makefile.am +0 -37
  84. data/ext/mathematical/lasem/lasem.pc.in +0 -11
  85. data/ext/mathematical/lasem/m4/introspection.m4 +0 -96
  86. data/ext/mathematical/lasem/po/ChangeLog +0 -0
  87. data/ext/mathematical/lasem/po/ro.po +0 -64
  88. data/ext/mathematical/lasem/src/Makefile.am +0 -349
  89. data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +0 -39
  90. data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +0 -26
  91. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +0 -39
  92. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +0 -26
  93. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +0 -39
  94. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +0 -26
  95. data/ext/mathematical/lasem/tests/Makefile.am +0 -34
  96. data/ext/mathematical/lib/liblasem.dylib +0 -0
  97. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +0 -512
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCCompiler.cmake +0 -76
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCXXCompiler.cmake +0 -88
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_C.bin +0 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeSystem.cmake +0 -15
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdC/CMakeCCompilerId.c +0 -671
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeError.log +0 -22
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +0 -351
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +0 -34
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +0 -11
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +0 -76
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +0 -8
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +0 -1
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +0 -11
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +0 -76
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +0 -8
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +0 -1
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +0 -11
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +0 -76
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +0 -8
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +0 -1
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +0 -11
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +0 -76
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +0 -8
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +0 -1
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +0 -11
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +0 -76
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +0 -8
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +0 -1
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +0 -11
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +0 -76
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +0 -8
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +0 -1
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +0 -11
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +0 -76
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +0 -8
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +0 -1
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +0 -11
  139. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +0 -76
  140. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +0 -8
  141. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +0 -1
  142. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +0 -11
  143. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +0 -76
  144. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +0 -8
  145. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +0 -1
  146. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +0 -11
  147. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +0 -76
  148. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +0 -8
  149. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +0 -1
  150. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +0 -11
  151. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +0 -76
  152. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +0 -8
  153. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +0 -1
  154. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +0 -11
  155. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +0 -76
  156. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +0 -8
  157. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +0 -1
  158. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +0 -11
  159. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +0 -76
  160. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +0 -8
  161. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +0 -1
  162. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +0 -11
  163. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +0 -76
  164. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +0 -8
  165. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +0 -1
  166. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +0 -11
  167. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +0 -76
  168. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +0 -8
  169. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +0 -1
  170. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +0 -11
  171. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +0 -76
  172. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +0 -8
  173. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +0 -1
  174. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +0 -11
  175. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +0 -76
  176. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +0 -8
  177. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +0 -1
  178. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +0 -11
  179. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +0 -76
  180. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +0 -8
  181. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +0 -1
  182. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +0 -177
  183. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +0 -1033
  184. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +0 -11
  185. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +0 -76
  186. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +0 -8
  187. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +0 -1
  188. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +0 -11
  189. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +0 -76
  190. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +0 -8
  191. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +0 -1
  192. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +0 -11
  193. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +0 -76
  194. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +0 -8
  195. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +0 -1
  196. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +0 -11
  197. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +0 -76
  198. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +0 -8
  199. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +0 -1
  200. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +0 -11
  201. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +0 -76
  202. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +0 -8
  203. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +0 -1
  204. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +0 -11
  205. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +0 -76
  206. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +0 -8
  207. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +0 -1
  208. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +0 -11
  209. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +0 -76
  210. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +0 -8
  211. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +0 -1
  212. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +0 -11
  213. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +0 -76
  214. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +0 -8
  215. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +0 -1
  216. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +0 -11
  217. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +0 -76
  218. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +0 -8
  219. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +0 -1
  220. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +0 -11
  221. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +0 -76
  222. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +0 -8
  223. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +0 -1
  224. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +0 -41
  225. data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +0 -1
  226. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +0 -11
  227. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +0 -76
  228. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +0 -8
  229. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +0 -1
  230. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +0 -44
  231. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +0 -206
  232. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +0 -20
  233. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +0 -2
  234. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +0 -10
  235. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +0 -1
  236. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +0 -11
  237. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +0 -244
  238. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +0 -42
  239. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +0 -203
  240. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +0 -19
  241. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +0 -3
  242. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +0 -49
  243. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +0 -49
  244. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +0 -10
  245. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +0 -2
  246. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +0 -11
  247. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +0 -11
  248. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +0 -76
  249. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +0 -8
  250. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +0 -1
  251. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +0 -43
  252. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +0 -217
  253. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +0 -20
  254. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +0 -2
  255. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +0 -10
  256. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +0 -1
  257. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +0 -12
  258. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +0 -59
  259. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +0 -473
  260. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +0 -37
  261. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +0 -2
  262. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +0 -10
  263. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +0 -1
  264. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +0 -29
  265. data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +0 -1
  266. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +0 -8
  267. data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +0 -105
  268. data/ext/mathematical/mtex2MML/build/Makefile +0 -1485
  269. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +0 -102
  270. data/ext/mathematical/mtex2MML/build/lexer.c +0 -8903
  271. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  272. data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +0 -10
  273. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +0 -42
  274. data/ext/mathematical/mtex2MML/build/parser.c +0 -10334
  275. data/ext/mathematical/mtex2MML/build/parser.h +0 -625
  276. data/ext/mathematical/mtex2MML/build/parser.output +0 -120719
  277. data/test/mathematical/basic_test.rb +0 -89
  278. data/test/mathematical/corrections_test.rb +0 -16
  279. data/test/mathematical/delimiters_test.rb +0 -69
  280. data/test/mathematical/fixtures/after/backslashes.html +0 -5
  281. data/test/mathematical/fixtures/after/brackets_display.html +0 -1
  282. data/test/mathematical/fixtures/after/compliance_accents.html +0 -17
  283. data/test/mathematical/fixtures/after/compliance_arrows.html +0 -71
  284. data/test/mathematical/fixtures/after/compliance_colors.html +0 -4
  285. data/test/mathematical/fixtures/after/compliance_greek_letters.html +0 -42
  286. data/test/mathematical/fixtures/after/compliance_large_math.html +0 -19
  287. data/test/mathematical/fixtures/after/compliance_log_symbols.html +0 -34
  288. data/test/mathematical/fixtures/after/compliance_operators.html +0 -262
  289. data/test/mathematical/fixtures/after/dollar_sign_inline.html +0 -1
  290. data/test/mathematical/fixtures/after/equation_display.html +0 -1
  291. data/test/mathematical/fixtures/after/multiple_dollar_inline.html +0 -1
  292. data/test/mathematical/fixtures/after/parens_inline.html +0 -1
  293. data/test/mathematical/fixtures/before/backslashes.text +0 -17
  294. data/test/mathematical/fixtures/before/brackets_display.text +0 -1
  295. data/test/mathematical/fixtures/before/compliance_accents.text +0 -17
  296. data/test/mathematical/fixtures/before/compliance_arrows.text +0 -71
  297. data/test/mathematical/fixtures/before/compliance_colors.text +0 -4
  298. data/test/mathematical/fixtures/before/compliance_greek_letters.text +0 -42
  299. data/test/mathematical/fixtures/before/compliance_large_math.text +0 -19
  300. data/test/mathematical/fixtures/before/compliance_log_symbols.text +0 -34
  301. data/test/mathematical/fixtures/before/compliance_operators.text +0 -262
  302. data/test/mathematical/fixtures/before/dollar_sign_inline.text +0 -1
  303. data/test/mathematical/fixtures/before/equation_display.text +0 -1
  304. data/test/mathematical/fixtures/before/multiple_dollar_inline.text +0 -1
  305. data/test/mathematical/fixtures/before/parens_inline.text +0 -1
  306. data/test/mathematical/fixtures/performance/big_file.text +0 -1755
  307. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  308. data/test/mathematical/fixtures/png/numeric_test_2.png +0 -0
  309. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  310. data/test/mathematical/fixtures/png/pmatrix.png +0 -0
  311. data/test/mathematical/fixtures_test.rb +0 -51
  312. data/test/mathematical/maliciousness_test.rb +0 -152
  313. data/test/mathematical/mathjax_test.rb +0 -26
  314. data/test/mathematical/mathml_test.rb +0 -21
  315. data/test/mathematical/multiples_test.rb +0 -71
  316. data/test/mathematical/performance_test.rb +0 -15
  317. data/test/mathematical/png_test.rb +0 -30
  318. data/test/test_helper.rb +0 -72
@@ -1,473 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.16
3
-
4
- # Delete rule output on recipe failure.
5
- .DELETE_ON_ERROR:
6
-
7
-
8
- #=============================================================================
9
- # Special targets provided by cmake.
10
-
11
- # Disable implicit rules so canonical targets will work.
12
- .SUFFIXES:
13
-
14
-
15
- # Remove some rules from gmake that .SUFFIXES does not remove.
16
- SUFFIXES =
17
-
18
- .SUFFIXES: .hpux_make_needs_suffix_list
19
-
20
-
21
- # Suppress display of executed commands.
22
- $(VERBOSE).SILENT:
23
-
24
-
25
- # A target that is always out of date.
26
- cmake_force:
27
-
28
- .PHONY : cmake_force
29
-
30
- #=============================================================================
31
- # Set environment variables for the build.
32
-
33
- # The shell in which to execute make rules.
34
- SHELL = /bin/sh
35
-
36
- # The CMake executable.
37
- CMAKE_COMMAND = /usr/local/Cellar/cmake/3.16.2/bin/cmake
38
-
39
- # The command to remove a file.
40
- RM = /usr/local/Cellar/cmake/3.16.2/bin/cmake -E remove -f
41
-
42
- # Escaping for special characters.
43
- EQUALS = =
44
-
45
- # The top-level source directory on which CMake was run.
46
- CMAKE_SOURCE_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
47
-
48
- # The top-level build directory on which CMake was run.
49
- CMAKE_BINARY_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
50
-
51
- # Include any dependencies generated for this target.
52
- include CMakeFiles/mtex2MML_clar.dir/depend.make
53
-
54
- # Include the progress variables for this target.
55
- include CMakeFiles/mtex2MML_clar.dir/progress.make
56
-
57
- # Include the compile flags for this target's objects.
58
- include CMakeFiles/mtex2MML_clar.dir/flags.make
59
-
60
- ../tests/clar.suite: ../tests/clar/fixtures.h
61
- ../tests/clar.suite: ../tests/clar/fs.h
62
- ../tests/clar.suite: ../tests/clar/print.h
63
- ../tests/clar.suite: ../tests/clar/sandbox.h
64
- ../tests/clar.suite: ../tests/deps/file2str/file2str.c
65
- ../tests/clar.suite: ../tests/deps/file2str/file2str.h
66
- ../tests/clar.suite: ../tests/deps/mkdtemp/mkdtemp.c
67
- ../tests/clar.suite: ../tests/deps/mkdtemp/mkdtemp.h
68
- ../tests/clar.suite: ../tests/deps/trim/trim.c
69
- ../tests/clar.suite: ../tests/deps/trim/trim.h
70
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating ../tests/clar.suite"
71
- cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests && /usr/bin/python generate.py
72
-
73
- parser.c: ../src/parser.y
74
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "[BISON][MTEX2MMLPARSER] Building parser with bison 2.3"
75
- cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML && /usr/bin/bison -y -v -p mtex2MML_yy -d -o /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/parser.y
76
-
77
- parser.h: parser.c
78
- @$(CMAKE_COMMAND) -E touch_nocreate parser.h
79
-
80
- lexer.c: ../src/lexer.l
81
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "[FLEX][MTEX2MMLSCANNER] Building scanner with flex 2.5.35"
82
- cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML && /usr/bin/flex -P mtex2MML_yy -o/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/lexer.l
83
-
84
- CMakeFiles/mtex2MML_clar.dir/src/colors.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
85
- CMakeFiles/mtex2MML_clar.dir/src/colors.c.o: ../src/colors.c
86
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/mtex2MML_clar.dir/src/colors.c.o"
87
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/colors.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c
88
-
89
- CMakeFiles/mtex2MML_clar.dir/src/colors.c.i: cmake_force
90
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/colors.c.i"
91
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c > CMakeFiles/mtex2MML_clar.dir/src/colors.c.i
92
-
93
- CMakeFiles/mtex2MML_clar.dir/src/colors.c.s: cmake_force
94
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/colors.c.s"
95
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c -o CMakeFiles/mtex2MML_clar.dir/src/colors.c.s
96
-
97
- CMakeFiles/mtex2MML_clar.dir/src/em.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
98
- CMakeFiles/mtex2MML_clar.dir/src/em.c.o: ../src/em.c
99
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/mtex2MML_clar.dir/src/em.c.o"
100
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/em.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c
101
-
102
- CMakeFiles/mtex2MML_clar.dir/src/em.c.i: cmake_force
103
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/em.c.i"
104
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c > CMakeFiles/mtex2MML_clar.dir/src/em.c.i
105
-
106
- CMakeFiles/mtex2MML_clar.dir/src/em.c.s: cmake_force
107
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/em.c.s"
108
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c -o CMakeFiles/mtex2MML_clar.dir/src/em.c.s
109
-
110
- CMakeFiles/mtex2MML_clar.dir/src/environment.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
111
- CMakeFiles/mtex2MML_clar.dir/src/environment.c.o: ../src/environment.c
112
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/mtex2MML_clar.dir/src/environment.c.o"
113
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/environment.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c
114
-
115
- CMakeFiles/mtex2MML_clar.dir/src/environment.c.i: cmake_force
116
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/environment.c.i"
117
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c > CMakeFiles/mtex2MML_clar.dir/src/environment.c.i
118
-
119
- CMakeFiles/mtex2MML_clar.dir/src/environment.c.s: cmake_force
120
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/environment.c.s"
121
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c -o CMakeFiles/mtex2MML_clar.dir/src/environment.c.s
122
-
123
- CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
124
- CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o: ../src/string_dup.c
125
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o"
126
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_dup.c
127
-
128
- CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.i: cmake_force
129
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.i"
130
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_dup.c > CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.i
131
-
132
- CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.s: cmake_force
133
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.s"
134
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_dup.c -o CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.s
135
-
136
- CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
137
- CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o: ../src/string_extras.c
138
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o"
139
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c
140
-
141
- CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i: cmake_force
142
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i"
143
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c > CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i
144
-
145
- CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s: cmake_force
146
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s"
147
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c -o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s
148
-
149
- CMakeFiles/mtex2MML_clar.dir/tests/main.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
150
- CMakeFiles/mtex2MML_clar.dir/tests/main.c.o: ../tests/main.c
151
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/main.c.o"
152
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/main.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c
153
-
154
- CMakeFiles/mtex2MML_clar.dir/tests/main.c.i: cmake_force
155
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/main.c.i"
156
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c > CMakeFiles/mtex2MML_clar.dir/tests/main.c.i
157
-
158
- CMakeFiles/mtex2MML_clar.dir/tests/main.c.s: cmake_force
159
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/main.c.s"
160
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c -o CMakeFiles/mtex2MML_clar.dir/tests/main.c.s
161
-
162
- CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
163
- CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: ../tests/clar.c
164
- CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: ../tests/clar.suite
165
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o"
166
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c
167
-
168
- CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i: cmake_force
169
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i"
170
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c > CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i
171
-
172
- CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s: cmake_force
173
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s"
174
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c -o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s
175
-
176
- CMakeFiles/mtex2MML_clar.dir/tests/array.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
177
- CMakeFiles/mtex2MML_clar.dir/tests/array.c.o: ../tests/array.c
178
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/array.c.o"
179
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/array.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c
180
-
181
- CMakeFiles/mtex2MML_clar.dir/tests/array.c.i: cmake_force
182
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/array.c.i"
183
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c > CMakeFiles/mtex2MML_clar.dir/tests/array.c.i
184
-
185
- CMakeFiles/mtex2MML_clar.dir/tests/array.c.s: cmake_force
186
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/array.c.s"
187
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c -o CMakeFiles/mtex2MML_clar.dir/tests/array.c.s
188
-
189
- CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
190
- CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o: ../tests/basic.c
191
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o"
192
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c
193
-
194
- CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i: cmake_force
195
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i"
196
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c > CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i
197
-
198
- CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s: cmake_force
199
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s"
200
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c -o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s
201
-
202
- CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
203
- CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o: ../tests/cornercases.c
204
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o"
205
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c
206
-
207
- CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i: cmake_force
208
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i"
209
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c > CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i
210
-
211
- CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s: cmake_force
212
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s"
213
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c -o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s
214
-
215
- CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
216
- CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o: ../tests/delimiters.c
217
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o"
218
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c
219
-
220
- CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i: cmake_force
221
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i"
222
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c > CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i
223
-
224
- CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s: cmake_force
225
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s"
226
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c -o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s
227
-
228
- CMakeFiles/mtex2MML_clar.dir/tests/env.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
229
- CMakeFiles/mtex2MML_clar.dir/tests/env.c.o: ../tests/env.c
230
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/env.c.o"
231
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/env.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c
232
-
233
- CMakeFiles/mtex2MML_clar.dir/tests/env.c.i: cmake_force
234
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/env.c.i"
235
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c > CMakeFiles/mtex2MML_clar.dir/tests/env.c.i
236
-
237
- CMakeFiles/mtex2MML_clar.dir/tests/env.c.s: cmake_force
238
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/env.c.s"
239
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c -o CMakeFiles/mtex2MML_clar.dir/tests/env.c.s
240
-
241
- CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
242
- CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o: ../tests/functions.c
243
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o"
244
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c
245
-
246
- CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i: cmake_force
247
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i"
248
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c > CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i
249
-
250
- CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s: cmake_force
251
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s"
252
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c -o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s
253
-
254
- CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
255
- CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o: ../tests/helpers.c
256
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o"
257
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c
258
-
259
- CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i: cmake_force
260
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i"
261
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c > CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i
262
-
263
- CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s: cmake_force
264
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s"
265
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c -o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s
266
-
267
- CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
268
- CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o: ../tests/maliciousness.c
269
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o"
270
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c
271
-
272
- CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i: cmake_force
273
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i"
274
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c > CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i
275
-
276
- CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s: cmake_force
277
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s"
278
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c -o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s
279
-
280
- CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
281
- CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o: ../tests/mathjax.c
282
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o"
283
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c
284
-
285
- CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i: cmake_force
286
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i"
287
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c > CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i
288
-
289
- CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s: cmake_force
290
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s"
291
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c -o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s
292
-
293
- CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
294
- CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o: ../tests/numbered_equations.c
295
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o"
296
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c
297
-
298
- CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i: cmake_force
299
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i"
300
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c > CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i
301
-
302
- CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s: cmake_force
303
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s"
304
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c -o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s
305
-
306
- CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
307
- CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o: ../tests/performance.c
308
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o"
309
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c
310
-
311
- CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i: cmake_force
312
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i"
313
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c > CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i
314
-
315
- CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s: cmake_force
316
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s"
317
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c -o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s
318
-
319
- CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
320
- CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o: ../tests/symbols.c
321
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o"
322
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/symbols.c
323
-
324
- CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.i: cmake_force
325
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.i"
326
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/symbols.c > CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.i
327
-
328
- CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.s: cmake_force
329
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.s"
330
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/symbols.c -o CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.s
331
-
332
- CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
333
- CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o: ../tests/deps/file2str/file2str.c
334
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o"
335
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c
336
-
337
- CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.i: cmake_force
338
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.i"
339
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c > CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.i
340
-
341
- CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.s: cmake_force
342
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.s"
343
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c -o CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.s
344
-
345
- CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
346
- CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o: ../tests/deps/mkdtemp/mkdtemp.c
347
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o"
348
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c
349
-
350
- CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.i: cmake_force
351
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.i"
352
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c > CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.i
353
-
354
- CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.s: cmake_force
355
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.s"
356
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c -o CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.s
357
-
358
- CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
359
- CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o: ../tests/deps/trim/trim.c
360
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o"
361
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/trim/trim.c
362
-
363
- CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.i: cmake_force
364
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.i"
365
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/trim/trim.c > CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.i
366
-
367
- CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.s: cmake_force
368
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.s"
369
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/deps/trim/trim.c -o CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.s
370
-
371
- CMakeFiles/mtex2MML_clar.dir/parser.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
372
- CMakeFiles/mtex2MML_clar.dir/parser.c.o: parser.c
373
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/mtex2MML_clar.dir/parser.c.o"
374
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/parser.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c
375
-
376
- CMakeFiles/mtex2MML_clar.dir/parser.c.i: cmake_force
377
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/parser.c.i"
378
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c > CMakeFiles/mtex2MML_clar.dir/parser.c.i
379
-
380
- CMakeFiles/mtex2MML_clar.dir/parser.c.s: cmake_force
381
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/parser.c.s"
382
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c -o CMakeFiles/mtex2MML_clar.dir/parser.c.s
383
-
384
- CMakeFiles/mtex2MML_clar.dir/lexer.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
385
- CMakeFiles/mtex2MML_clar.dir/lexer.c.o: lexer.c
386
- CMakeFiles/mtex2MML_clar.dir/lexer.c.o: parser.h
387
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
388
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/lexer.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c
389
-
390
- CMakeFiles/mtex2MML_clar.dir/lexer.c.i: cmake_force
391
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/lexer.c.i"
392
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c > CMakeFiles/mtex2MML_clar.dir/lexer.c.i
393
-
394
- CMakeFiles/mtex2MML_clar.dir/lexer.c.s: cmake_force
395
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/lexer.c.s"
396
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c -o CMakeFiles/mtex2MML_clar.dir/lexer.c.s
397
-
398
- # Object files for target mtex2MML_clar
399
- mtex2MML_clar_OBJECTS = \
400
- "CMakeFiles/mtex2MML_clar.dir/src/colors.c.o" \
401
- "CMakeFiles/mtex2MML_clar.dir/src/em.c.o" \
402
- "CMakeFiles/mtex2MML_clar.dir/src/environment.c.o" \
403
- "CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o" \
404
- "CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o" \
405
- "CMakeFiles/mtex2MML_clar.dir/tests/main.c.o" \
406
- "CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o" \
407
- "CMakeFiles/mtex2MML_clar.dir/tests/array.c.o" \
408
- "CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o" \
409
- "CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o" \
410
- "CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o" \
411
- "CMakeFiles/mtex2MML_clar.dir/tests/env.c.o" \
412
- "CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o" \
413
- "CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o" \
414
- "CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o" \
415
- "CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o" \
416
- "CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o" \
417
- "CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o" \
418
- "CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o" \
419
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o" \
420
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o" \
421
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o" \
422
- "CMakeFiles/mtex2MML_clar.dir/parser.c.o" \
423
- "CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
424
-
425
- # External object files for target mtex2MML_clar
426
- mtex2MML_clar_EXTERNAL_OBJECTS =
427
-
428
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/colors.c.o
429
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/em.c.o
430
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/environment.c.o
431
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o
432
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o
433
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/main.c.o
434
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o
435
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/array.c.o
436
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o
437
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o
438
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o
439
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/env.c.o
440
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o
441
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o
442
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o
443
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o
444
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o
445
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o
446
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o
447
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o
448
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o
449
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o
450
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/parser.c.o
451
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/lexer.c.o
452
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/build.make
453
- mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/link.txt
454
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Linking C executable mtex2MML_clar"
455
- $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/mtex2MML_clar.dir/link.txt --verbose=$(VERBOSE)
456
- cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests && /usr/bin/python mathjax_generate.py
457
-
458
- # Rule to build all files generated by this target.
459
- CMakeFiles/mtex2MML_clar.dir/build: mtex2MML_clar
460
-
461
- .PHONY : CMakeFiles/mtex2MML_clar.dir/build
462
-
463
- CMakeFiles/mtex2MML_clar.dir/clean:
464
- $(CMAKE_COMMAND) -P CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake
465
- .PHONY : CMakeFiles/mtex2MML_clar.dir/clean
466
-
467
- CMakeFiles/mtex2MML_clar.dir/depend: ../tests/clar.suite
468
- CMakeFiles/mtex2MML_clar.dir/depend: parser.c
469
- CMakeFiles/mtex2MML_clar.dir/depend: parser.h
470
- CMakeFiles/mtex2MML_clar.dir/depend: lexer.c
471
- cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake --color=$(COLOR)
472
- .PHONY : CMakeFiles/mtex2MML_clar.dir/depend
473
-
@@ -1,37 +0,0 @@
1
- file(REMOVE_RECURSE
2
- "../tests/clar.suite"
3
- "CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
4
- "CMakeFiles/mtex2MML_clar.dir/parser.c.o"
5
- "CMakeFiles/mtex2MML_clar.dir/src/colors.c.o"
6
- "CMakeFiles/mtex2MML_clar.dir/src/em.c.o"
7
- "CMakeFiles/mtex2MML_clar.dir/src/environment.c.o"
8
- "CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o"
9
- "CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o"
10
- "CMakeFiles/mtex2MML_clar.dir/tests/array.c.o"
11
- "CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o"
12
- "CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o"
13
- "CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o"
14
- "CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o"
15
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o"
16
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o"
17
- "CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o"
18
- "CMakeFiles/mtex2MML_clar.dir/tests/env.c.o"
19
- "CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o"
20
- "CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o"
21
- "CMakeFiles/mtex2MML_clar.dir/tests/main.c.o"
22
- "CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o"
23
- "CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o"
24
- "CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o"
25
- "CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o"
26
- "CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o"
27
- "lexer.c"
28
- "mtex2MML_clar"
29
- "mtex2MML_clar.pdb"
30
- "parser.c"
31
- "parser.h"
32
- )
33
-
34
- # Per-language clean rules from dependency scanning.
35
- foreach(lang C)
36
- include(CMakeFiles/mtex2MML_clar.dir/cmake_clean_${lang}.cmake OPTIONAL)
37
- endforeach()
@@ -1,2 +0,0 @@
1
- # Empty dependencies file for mtex2MML_clar.
2
- # This may be replaced when dependencies are built.
@@ -1,10 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.16
3
-
4
- # compile C with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
5
- C_FLAGS = -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk
6
-
7
- C_DEFINES = -DCLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\" -DCLAR_TMPDIR=\"libmtex2MML_tests\"
8
-
9
- C_INCLUDES = -I/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src -I/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/deps -I/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build -I/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests
10
-
@@ -1 +0,0 @@
1
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/mtex2MML_clar.dir/src/colors.c.o CMakeFiles/mtex2MML_clar.dir/src/em.c.o CMakeFiles/mtex2MML_clar.dir/src/environment.c.o CMakeFiles/mtex2MML_clar.dir/src/string_dup.c.o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o CMakeFiles/mtex2MML_clar.dir/tests/main.c.o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o CMakeFiles/mtex2MML_clar.dir/tests/array.c.o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o CMakeFiles/mtex2MML_clar.dir/tests/env.c.o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o CMakeFiles/mtex2MML_clar.dir/tests/symbols.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o CMakeFiles/mtex2MML_clar.dir/parser.c.o CMakeFiles/mtex2MML_clar.dir/lexer.c.o -o mtex2MML_clar
@@ -1,29 +0,0 @@
1
- CMAKE_PROGRESS_1 = 32
2
- CMAKE_PROGRESS_2 = 33
3
- CMAKE_PROGRESS_3 = 34
4
- CMAKE_PROGRESS_4 = 35
5
- CMAKE_PROGRESS_5 = 36
6
- CMAKE_PROGRESS_6 = 37
7
- CMAKE_PROGRESS_7 = 38
8
- CMAKE_PROGRESS_8 = 39
9
- CMAKE_PROGRESS_9 = 40
10
- CMAKE_PROGRESS_10 = 41
11
- CMAKE_PROGRESS_11 = 42
12
- CMAKE_PROGRESS_12 = 43
13
- CMAKE_PROGRESS_13 = 44
14
- CMAKE_PROGRESS_14 = 45
15
- CMAKE_PROGRESS_15 = 46
16
- CMAKE_PROGRESS_16 = 47
17
- CMAKE_PROGRESS_17 = 48
18
- CMAKE_PROGRESS_18 = 49
19
- CMAKE_PROGRESS_19 = 50
20
- CMAKE_PROGRESS_20 = 51
21
- CMAKE_PROGRESS_21 = 52
22
- CMAKE_PROGRESS_22 = 53
23
- CMAKE_PROGRESS_23 = 54
24
- CMAKE_PROGRESS_24 = 55
25
- CMAKE_PROGRESS_25 = 56
26
- CMAKE_PROGRESS_26 = 57
27
- CMAKE_PROGRESS_27 = 58
28
- CMAKE_PROGRESS_28 = 59
29
-