mathematical 1.5.0 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -0
- data/Rakefile +5 -9
- data/ext/README.md +21 -0
- data/ext/mathematical/CMakeLists.txt +76 -0
- data/ext/mathematical/FindNewerRubies.cmake +292 -0
- data/ext/mathematical/FindPackageHandleStandardArgs.cmake +58 -0
- data/ext/mathematical/extconf.rb +38 -18
- data/ext/mathematical/lasem/AUTHORS +1 -0
- data/ext/mathematical/lasem/COPYING +482 -0
- data/ext/mathematical/lasem/{docs/reference/lasem/lasem-overrides.txt → ChangeLog} +0 -0
- data/ext/mathematical/lasem/MAINTAINERS +3 -0
- data/ext/mathematical/lasem/Makefile.am +34 -0
- data/ext/mathematical/lasem/Makefile.decl +57 -0
- data/ext/mathematical/lasem/NEWS +117 -0
- data/ext/mathematical/lasem/README +28 -0
- data/ext/mathematical/lasem/RELEASING +85 -0
- data/ext/mathematical/lasem/TODO +50 -0
- data/ext/mathematical/lasem/autogen.sh +177 -0
- data/ext/mathematical/lasem/configure.ac +139 -0
- data/ext/mathematical/lasem/docs/Makefile.am +14 -0
- data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +106 -0
- data/ext/mathematical/lasem/docs/reference/Makefile.am +3 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +205 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +75 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +64 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +110 -0
- data/ext/mathematical/lasem/itex2mml/COPYING.itex2MML +3 -0
- data/ext/mathematical/lasem/itex2mml/Makefile.am +37 -0
- data/ext/mathematical/lasem/itex2mml/README.itex2MML +13 -0
- data/ext/mathematical/lasem/lasem.doap +21 -0
- data/ext/mathematical/lasem/m4/introspection.m4 +96 -0
- data/ext/mathematical/lasem/po/ChangeLog +0 -0
- data/ext/mathematical/lasem/po/LINGUAS +28 -0
- data/ext/mathematical/lasem/po/POTFILES.in +195 -0
- data/ext/mathematical/lasem/po/POTFILES.skip +1 -0
- data/ext/mathematical/lasem/po/bs.po +65 -0
- data/ext/mathematical/lasem/po/cs.po +70 -0
- data/ext/mathematical/lasem/po/de.po +68 -0
- data/ext/mathematical/lasem/po/el.po +73 -0
- data/ext/mathematical/lasem/po/es.po +78 -0
- data/ext/mathematical/lasem/po/eu.po +66 -0
- data/ext/mathematical/lasem/po/fr.po +65 -0
- data/ext/mathematical/lasem/po/gl.po +64 -0
- data/ext/mathematical/lasem/po/hu.po +76 -0
- data/ext/mathematical/lasem/po/id.po +69 -0
- data/ext/mathematical/lasem/po/it.po +64 -0
- data/ext/mathematical/lasem/po/lt.po +77 -0
- data/ext/mathematical/lasem/po/lv.po +66 -0
- data/ext/mathematical/lasem/po/nb.po +62 -0
- data/ext/mathematical/lasem/po/oc.po +65 -0
- data/ext/mathematical/lasem/po/pl.po +73 -0
- data/ext/mathematical/lasem/po/pt.po +77 -0
- data/ext/mathematical/lasem/po/pt_BR.po +64 -0
- data/ext/mathematical/lasem/po/ru.po +66 -0
- data/ext/mathematical/lasem/po/sl.po +68 -0
- data/ext/mathematical/lasem/po/sr.po +65 -0
- data/ext/mathematical/lasem/po/sr@latin.po +65 -0
- data/ext/mathematical/lasem/po/sv.po +72 -0
- data/ext/mathematical/lasem/po/tg.po +64 -0
- data/ext/mathematical/lasem/po/tr.po +65 -0
- data/ext/mathematical/lasem/po/zh_CN.po +63 -0
- data/ext/mathematical/lasem/src/Makefile.am +349 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmitex.c +0 -1
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/tests/Makefile.am +34 -0
- data/ext/mathematical/lasem/tests/data/mathml/gtkmathview/README +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd +1622 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es +672 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4 +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html +89 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css +4 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml +4 -0
- data/ext/mathematical/lasem/tests/fuzztest.sh +12 -0
- data/ext/mathematical/lasem/tests/suite.ini +27 -0
- data/ext/mathematical/lasem/tools/change-license +3 -0
- data/ext/mathematical/lasem/tools/charlist.dtd +73 -0
- data/ext/mathematical/lasem/tools/entities-to-c.xsl +1067 -0
- data/ext/mathematical/lasem/tools/fuzzxml +243 -0
- data/ext/mathematical/lasem/tools/unicode.xml +44303 -0
- data/ext/mathematical/lasem_overrides.c +25 -4
- data/ext/mathematical/lasem_overrides.h +5 -0
- data/ext/mathematical/lib/liblasem.dylib +0 -0
- data/ext/mathematical/mtex2MML/CONTRIBUTING.md +22 -0
- data/ext/mathematical/mtex2MML/README.md +143 -0
- data/ext/mathematical/mtex2MML/SUPPORTED.md +1214 -0
- data/ext/mathematical/mtex2MML/appveyor.yml +25 -0
- data/ext/mathematical/mtex2MML/build.ps1 +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +375 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +208 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +1137 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +253 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +148 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +251 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +276 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +10 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +683 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +26 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +1 -0
- data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +94 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +10 -0
- data/ext/mathematical/mtex2MML/build/parser.output +117661 -0
- data/ext/mathematical/mtex2MML/deps/strdup/package.json +12 -0
- data/ext/mathematical/mtex2MML/deps/uthash/package.json +26 -0
- data/ext/mathematical/mtex2MML/script/bootstrap +30 -0
- data/ext/mathematical/mtex2MML/script/cibuild +11 -0
- data/ext/mathematical/mtex2MML/script/release +27 -0
- data/ext/mathematical/mtex2MML/src/y.output +117655 -0
- data/ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc +21 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/package.json +9 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html +86 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html +148 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html +188 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html +156 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html +45 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html +37 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html +79 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html +70 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html +64 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html +19 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html +18 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html +15 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html +50 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html +120 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html +138 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html +46 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html +235 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html +159 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html +139 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html +256 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html +81 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html +101 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html +176 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html +31 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html +40 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html +56 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html +49 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/block.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html +24 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html +27 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +12 -0
- data/ext/mathematical/mtex2MML/tests/generate.py +244 -0
- data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +72 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +1 -3
- metadata +699 -23
- data/ext/mathematical/lasem/Makefile +0 -1037
- data/ext/mathematical/lasem/config.h +0 -87
- data/ext/mathematical/lasem/docs/Makefile +0 -793
- data/ext/mathematical/lasem/docs/reference/Makefile +0 -735
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +0 -1029
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +0 -245
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +0 -856
- data/ext/mathematical/lasem/itex2mml/Makefile +0 -742
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +0 -6294
- data/ext/mathematical/lasem/itex2mml/y.tab.c +0 -5796
- data/ext/mathematical/lasem/itex2mml/y.tab.h +0 -378
- data/ext/mathematical/lasem/po/Makefile +0 -413
- data/ext/mathematical/lasem/src/Makefile +0 -1343
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -793
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -96
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1254
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -129
- data/ext/mathematical/lasem/tests/Makefile +0 -776
@@ -0,0 +1,48 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/../deps/uthash/../strdup/strdup.h
|
5
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/../deps/uthash/utarray.h
|
6
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/../deps/uthash/uthash.h
|
7
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/../deps/uthash/utstring.h
|
8
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/environment.h
|
9
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/mtex2MML.h
|
10
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: ../src/string_extras.h
|
11
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: lexer.c
|
12
|
+
CMakeFiles/libmtex2MML_static.dir/lexer.c.o: parser.h
|
13
|
+
|
14
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/../deps/uthash/../strdup/strdup.h
|
15
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/../deps/uthash/utarray.h
|
16
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/../deps/uthash/utstring.h
|
17
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/colors.h
|
18
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/em.h
|
19
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/environment.h
|
20
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/mtex2MML.h
|
21
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../src/string_extras.h
|
22
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../deps/strdup/strdup.h
|
23
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: ../deps/uthash/uthash.h
|
24
|
+
CMakeFiles/libmtex2MML_static.dir/parser.c.o: parser.c
|
25
|
+
|
26
|
+
CMakeFiles/libmtex2MML_static.dir/src/colors.c.o: ../src/../deps/uthash/uthash.h
|
27
|
+
CMakeFiles/libmtex2MML_static.dir/src/colors.c.o: ../src/colors.c
|
28
|
+
CMakeFiles/libmtex2MML_static.dir/src/colors.c.o: ../src/colors.h
|
29
|
+
|
30
|
+
CMakeFiles/libmtex2MML_static.dir/src/em.c.o: ../src/../deps/strdup/strdup.h
|
31
|
+
CMakeFiles/libmtex2MML_static.dir/src/em.c.o: ../src/../deps/uthash/utstring.h
|
32
|
+
CMakeFiles/libmtex2MML_static.dir/src/em.c.o: ../src/em.c
|
33
|
+
CMakeFiles/libmtex2MML_static.dir/src/em.c.o: ../src/em.h
|
34
|
+
|
35
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/../deps/strdup/strdup.h
|
36
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/../deps/uthash/../strdup/strdup.h
|
37
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/../deps/uthash/utarray.h
|
38
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/../deps/uthash/uthash.h
|
39
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/../deps/uthash/utstring.h
|
40
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/environment.c
|
41
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/environment.h
|
42
|
+
CMakeFiles/libmtex2MML_static.dir/src/environment.c.o: ../src/string_extras.h
|
43
|
+
|
44
|
+
CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o: ../src/../deps/strdup/strdup.h
|
45
|
+
CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o: ../src/../deps/uthash/utstring.h
|
46
|
+
CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o: ../src/string_extras.c
|
47
|
+
CMakeFiles/libmtex2MML_static.dir/src/string_extras.c.o: ../src/string_extras.h
|
48
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
# compile C with /usr/bin/cc
|
5
|
+
C_FLAGS = -I/usr/local/include -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -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
|
6
|
+
|
7
|
+
C_DEFINES = -DCLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\" -DCLAR_TMPDIR=\"libmtex2MML_tests\"
|
8
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
#=============================================================================
|
5
|
+
# Special targets provided by cmake.
|
6
|
+
|
7
|
+
# Disable implicit rules so canonical targets will work.
|
8
|
+
.SUFFIXES:
|
9
|
+
|
10
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
11
|
+
SUFFIXES =
|
12
|
+
|
13
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
14
|
+
|
15
|
+
# Suppress display of executed commands.
|
16
|
+
$(VERBOSE).SILENT:
|
17
|
+
|
18
|
+
# A target that is always out of date.
|
19
|
+
cmake_force:
|
20
|
+
.PHONY : cmake_force
|
21
|
+
|
22
|
+
#=============================================================================
|
23
|
+
# Set environment variables for the build.
|
24
|
+
|
25
|
+
# The shell in which to execute make rules.
|
26
|
+
SHELL = /bin/sh
|
27
|
+
|
28
|
+
# The CMake executable.
|
29
|
+
CMAKE_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake
|
30
|
+
|
31
|
+
# The command to remove a file.
|
32
|
+
RM = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E remove -f
|
33
|
+
|
34
|
+
# Escaping for special characters.
|
35
|
+
EQUALS = =
|
36
|
+
|
37
|
+
# The program to use to edit the cache.
|
38
|
+
CMAKE_EDIT_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ccmake
|
39
|
+
|
40
|
+
# The top-level source directory on which CMake was run.
|
41
|
+
CMAKE_SOURCE_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
|
42
|
+
|
43
|
+
# The top-level build directory on which CMake was run.
|
44
|
+
CMAKE_BINARY_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
|
45
|
+
|
46
|
+
# Utility rule file for memcheck.
|
47
|
+
|
48
|
+
# Include the progress variables for this target.
|
49
|
+
include CMakeFiles/memcheck.dir/progress.make
|
50
|
+
|
51
|
+
CMakeFiles/memcheck:
|
52
|
+
valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 ./mtex2MML_clar >/dev/null
|
53
|
+
|
54
|
+
memcheck: CMakeFiles/memcheck
|
55
|
+
memcheck: CMakeFiles/memcheck.dir/build.make
|
56
|
+
.PHONY : memcheck
|
57
|
+
|
58
|
+
# Rule to build all files generated by this target.
|
59
|
+
CMakeFiles/memcheck.dir/build: memcheck
|
60
|
+
.PHONY : CMakeFiles/memcheck.dir/build
|
61
|
+
|
62
|
+
CMakeFiles/memcheck.dir/clean:
|
63
|
+
$(CMAKE_COMMAND) -P CMakeFiles/memcheck.dir/cmake_clean.cmake
|
64
|
+
.PHONY : CMakeFiles/memcheck.dir/clean
|
65
|
+
|
66
|
+
CMakeFiles/memcheck.dir/depend:
|
67
|
+
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/memcheck.dir/DependInfo.cmake --color=$(COLOR)
|
68
|
+
.PHONY : CMakeFiles/memcheck.dir/depend
|
69
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,276 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
#=============================================================================
|
5
|
+
# Special targets provided by cmake.
|
6
|
+
|
7
|
+
# Disable implicit rules so canonical targets will work.
|
8
|
+
.SUFFIXES:
|
9
|
+
|
10
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
11
|
+
SUFFIXES =
|
12
|
+
|
13
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
14
|
+
|
15
|
+
# Suppress display of executed commands.
|
16
|
+
$(VERBOSE).SILENT:
|
17
|
+
|
18
|
+
# A target that is always out of date.
|
19
|
+
cmake_force:
|
20
|
+
.PHONY : cmake_force
|
21
|
+
|
22
|
+
#=============================================================================
|
23
|
+
# Set environment variables for the build.
|
24
|
+
|
25
|
+
# The shell in which to execute make rules.
|
26
|
+
SHELL = /bin/sh
|
27
|
+
|
28
|
+
# The CMake executable.
|
29
|
+
CMAKE_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake
|
30
|
+
|
31
|
+
# The command to remove a file.
|
32
|
+
RM = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E remove -f
|
33
|
+
|
34
|
+
# Escaping for special characters.
|
35
|
+
EQUALS = =
|
36
|
+
|
37
|
+
# The program to use to edit the cache.
|
38
|
+
CMAKE_EDIT_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ccmake
|
39
|
+
|
40
|
+
# The top-level source directory on which CMake was run.
|
41
|
+
CMAKE_SOURCE_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
|
42
|
+
|
43
|
+
# The top-level build directory on which CMake was run.
|
44
|
+
CMAKE_BINARY_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
|
45
|
+
|
46
|
+
# Include any dependencies generated for this target.
|
47
|
+
include CMakeFiles/mtex2MML.dir/depend.make
|
48
|
+
|
49
|
+
# Include the progress variables for this target.
|
50
|
+
include CMakeFiles/mtex2MML.dir/progress.make
|
51
|
+
|
52
|
+
# Include the compile flags for this target's objects.
|
53
|
+
include CMakeFiles/mtex2MML.dir/flags.make
|
54
|
+
|
55
|
+
parser.c: ../src/parser.y
|
56
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_1)
|
57
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "[BISON][MTEX2MMLPARSER] Building parser with bison 2.3"
|
58
|
+
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
|
59
|
+
|
60
|
+
parser.h: parser.c
|
61
|
+
|
62
|
+
lexer.c: ../src/lexer.l
|
63
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_2)
|
64
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "[FLEX][MTEX2MMLSCANNER] Building scanner with flex 2.5.35"
|
65
|
+
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
|
66
|
+
|
67
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
68
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.o: ../src/colors.c
|
69
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_3)
|
70
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/src/colors.c.o"
|
71
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/src/colors.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c
|
72
|
+
|
73
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.i: cmake_force
|
74
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/src/colors.c.i"
|
75
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c > CMakeFiles/mtex2MML.dir/src/colors.c.i
|
76
|
+
|
77
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.s: cmake_force
|
78
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/src/colors.c.s"
|
79
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c -o CMakeFiles/mtex2MML.dir/src/colors.c.s
|
80
|
+
|
81
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.o.requires:
|
82
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/colors.c.o.requires
|
83
|
+
|
84
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.o.provides: CMakeFiles/mtex2MML.dir/src/colors.c.o.requires
|
85
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/src/colors.c.o.provides.build
|
86
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/colors.c.o.provides
|
87
|
+
|
88
|
+
CMakeFiles/mtex2MML.dir/src/colors.c.o.provides.build: CMakeFiles/mtex2MML.dir/src/colors.c.o
|
89
|
+
|
90
|
+
CMakeFiles/mtex2MML.dir/src/em.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
91
|
+
CMakeFiles/mtex2MML.dir/src/em.c.o: ../src/em.c
|
92
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_4)
|
93
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/src/em.c.o"
|
94
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/src/em.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c
|
95
|
+
|
96
|
+
CMakeFiles/mtex2MML.dir/src/em.c.i: cmake_force
|
97
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/src/em.c.i"
|
98
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c > CMakeFiles/mtex2MML.dir/src/em.c.i
|
99
|
+
|
100
|
+
CMakeFiles/mtex2MML.dir/src/em.c.s: cmake_force
|
101
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/src/em.c.s"
|
102
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c -o CMakeFiles/mtex2MML.dir/src/em.c.s
|
103
|
+
|
104
|
+
CMakeFiles/mtex2MML.dir/src/em.c.o.requires:
|
105
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/em.c.o.requires
|
106
|
+
|
107
|
+
CMakeFiles/mtex2MML.dir/src/em.c.o.provides: CMakeFiles/mtex2MML.dir/src/em.c.o.requires
|
108
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/src/em.c.o.provides.build
|
109
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/em.c.o.provides
|
110
|
+
|
111
|
+
CMakeFiles/mtex2MML.dir/src/em.c.o.provides.build: CMakeFiles/mtex2MML.dir/src/em.c.o
|
112
|
+
|
113
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
114
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.o: ../src/environment.c
|
115
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_5)
|
116
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/src/environment.c.o"
|
117
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/src/environment.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c
|
118
|
+
|
119
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.i: cmake_force
|
120
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/src/environment.c.i"
|
121
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c > CMakeFiles/mtex2MML.dir/src/environment.c.i
|
122
|
+
|
123
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.s: cmake_force
|
124
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/src/environment.c.s"
|
125
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c -o CMakeFiles/mtex2MML.dir/src/environment.c.s
|
126
|
+
|
127
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.o.requires:
|
128
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/environment.c.o.requires
|
129
|
+
|
130
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.o.provides: CMakeFiles/mtex2MML.dir/src/environment.c.o.requires
|
131
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/src/environment.c.o.provides.build
|
132
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/environment.c.o.provides
|
133
|
+
|
134
|
+
CMakeFiles/mtex2MML.dir/src/environment.c.o.provides.build: CMakeFiles/mtex2MML.dir/src/environment.c.o
|
135
|
+
|
136
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
137
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.o: ../src/string_extras.c
|
138
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_6)
|
139
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/src/string_extras.c.o"
|
140
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/src/string_extras.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c
|
141
|
+
|
142
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.i: cmake_force
|
143
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/src/string_extras.c.i"
|
144
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c > CMakeFiles/mtex2MML.dir/src/string_extras.c.i
|
145
|
+
|
146
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.s: cmake_force
|
147
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/src/string_extras.c.s"
|
148
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c -o CMakeFiles/mtex2MML.dir/src/string_extras.c.s
|
149
|
+
|
150
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.o.requires:
|
151
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/string_extras.c.o.requires
|
152
|
+
|
153
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.o.provides: CMakeFiles/mtex2MML.dir/src/string_extras.c.o.requires
|
154
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/src/string_extras.c.o.provides.build
|
155
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/string_extras.c.o.provides
|
156
|
+
|
157
|
+
CMakeFiles/mtex2MML.dir/src/string_extras.c.o.provides.build: CMakeFiles/mtex2MML.dir/src/string_extras.c.o
|
158
|
+
|
159
|
+
CMakeFiles/mtex2MML.dir/src/main.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
160
|
+
CMakeFiles/mtex2MML.dir/src/main.c.o: ../src/main.c
|
161
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_7)
|
162
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/src/main.c.o"
|
163
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/src/main.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/main.c
|
164
|
+
|
165
|
+
CMakeFiles/mtex2MML.dir/src/main.c.i: cmake_force
|
166
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/src/main.c.i"
|
167
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/main.c > CMakeFiles/mtex2MML.dir/src/main.c.i
|
168
|
+
|
169
|
+
CMakeFiles/mtex2MML.dir/src/main.c.s: cmake_force
|
170
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/src/main.c.s"
|
171
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/main.c -o CMakeFiles/mtex2MML.dir/src/main.c.s
|
172
|
+
|
173
|
+
CMakeFiles/mtex2MML.dir/src/main.c.o.requires:
|
174
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/main.c.o.requires
|
175
|
+
|
176
|
+
CMakeFiles/mtex2MML.dir/src/main.c.o.provides: CMakeFiles/mtex2MML.dir/src/main.c.o.requires
|
177
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/src/main.c.o.provides.build
|
178
|
+
.PHONY : CMakeFiles/mtex2MML.dir/src/main.c.o.provides
|
179
|
+
|
180
|
+
CMakeFiles/mtex2MML.dir/src/main.c.o.provides.build: CMakeFiles/mtex2MML.dir/src/main.c.o
|
181
|
+
|
182
|
+
CMakeFiles/mtex2MML.dir/parser.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
183
|
+
CMakeFiles/mtex2MML.dir/parser.c.o: parser.c
|
184
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_8)
|
185
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/parser.c.o"
|
186
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/parser.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c
|
187
|
+
|
188
|
+
CMakeFiles/mtex2MML.dir/parser.c.i: cmake_force
|
189
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/parser.c.i"
|
190
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c > CMakeFiles/mtex2MML.dir/parser.c.i
|
191
|
+
|
192
|
+
CMakeFiles/mtex2MML.dir/parser.c.s: cmake_force
|
193
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/parser.c.s"
|
194
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c -o CMakeFiles/mtex2MML.dir/parser.c.s
|
195
|
+
|
196
|
+
CMakeFiles/mtex2MML.dir/parser.c.o.requires:
|
197
|
+
.PHONY : CMakeFiles/mtex2MML.dir/parser.c.o.requires
|
198
|
+
|
199
|
+
CMakeFiles/mtex2MML.dir/parser.c.o.provides: CMakeFiles/mtex2MML.dir/parser.c.o.requires
|
200
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/parser.c.o.provides.build
|
201
|
+
.PHONY : CMakeFiles/mtex2MML.dir/parser.c.o.provides
|
202
|
+
|
203
|
+
CMakeFiles/mtex2MML.dir/parser.c.o.provides.build: CMakeFiles/mtex2MML.dir/parser.c.o
|
204
|
+
|
205
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o: CMakeFiles/mtex2MML.dir/flags.make
|
206
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o: lexer.c
|
207
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o: parser.h
|
208
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_9)
|
209
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML.dir/lexer.c.o"
|
210
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML.dir/lexer.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c
|
211
|
+
|
212
|
+
CMakeFiles/mtex2MML.dir/lexer.c.i: cmake_force
|
213
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML.dir/lexer.c.i"
|
214
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c > CMakeFiles/mtex2MML.dir/lexer.c.i
|
215
|
+
|
216
|
+
CMakeFiles/mtex2MML.dir/lexer.c.s: cmake_force
|
217
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML.dir/lexer.c.s"
|
218
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c -o CMakeFiles/mtex2MML.dir/lexer.c.s
|
219
|
+
|
220
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o.requires:
|
221
|
+
.PHONY : CMakeFiles/mtex2MML.dir/lexer.c.o.requires
|
222
|
+
|
223
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o.provides: CMakeFiles/mtex2MML.dir/lexer.c.o.requires
|
224
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/lexer.c.o.provides.build
|
225
|
+
.PHONY : CMakeFiles/mtex2MML.dir/lexer.c.o.provides
|
226
|
+
|
227
|
+
CMakeFiles/mtex2MML.dir/lexer.c.o.provides.build: CMakeFiles/mtex2MML.dir/lexer.c.o
|
228
|
+
|
229
|
+
# Object files for target mtex2MML
|
230
|
+
mtex2MML_OBJECTS = \
|
231
|
+
"CMakeFiles/mtex2MML.dir/src/colors.c.o" \
|
232
|
+
"CMakeFiles/mtex2MML.dir/src/em.c.o" \
|
233
|
+
"CMakeFiles/mtex2MML.dir/src/environment.c.o" \
|
234
|
+
"CMakeFiles/mtex2MML.dir/src/string_extras.c.o" \
|
235
|
+
"CMakeFiles/mtex2MML.dir/src/main.c.o" \
|
236
|
+
"CMakeFiles/mtex2MML.dir/parser.c.o" \
|
237
|
+
"CMakeFiles/mtex2MML.dir/lexer.c.o"
|
238
|
+
|
239
|
+
# External object files for target mtex2MML
|
240
|
+
mtex2MML_EXTERNAL_OBJECTS =
|
241
|
+
|
242
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/src/colors.c.o
|
243
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/src/em.c.o
|
244
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/src/environment.c.o
|
245
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/src/string_extras.c.o
|
246
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/src/main.c.o
|
247
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/parser.c.o
|
248
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/lexer.c.o
|
249
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/build.make
|
250
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/link.txt
|
251
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C executable mtex2MML"
|
252
|
+
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/mtex2MML.dir/link.txt --verbose=$(VERBOSE)
|
253
|
+
|
254
|
+
# Rule to build all files generated by this target.
|
255
|
+
CMakeFiles/mtex2MML.dir/build: mtex2MML
|
256
|
+
.PHONY : CMakeFiles/mtex2MML.dir/build
|
257
|
+
|
258
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/src/colors.c.o.requires
|
259
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/src/em.c.o.requires
|
260
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/src/environment.c.o.requires
|
261
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/src/string_extras.c.o.requires
|
262
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/src/main.c.o.requires
|
263
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/parser.c.o.requires
|
264
|
+
CMakeFiles/mtex2MML.dir/requires: CMakeFiles/mtex2MML.dir/lexer.c.o.requires
|
265
|
+
.PHONY : CMakeFiles/mtex2MML.dir/requires
|
266
|
+
|
267
|
+
CMakeFiles/mtex2MML.dir/clean:
|
268
|
+
$(CMAKE_COMMAND) -P CMakeFiles/mtex2MML.dir/cmake_clean.cmake
|
269
|
+
.PHONY : CMakeFiles/mtex2MML.dir/clean
|
270
|
+
|
271
|
+
CMakeFiles/mtex2MML.dir/depend: parser.c
|
272
|
+
CMakeFiles/mtex2MML.dir/depend: parser.h
|
273
|
+
CMakeFiles/mtex2MML.dir/depend: lexer.c
|
274
|
+
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.dir/DependInfo.cmake --color=$(COLOR)
|
275
|
+
.PHONY : CMakeFiles/mtex2MML.dir/depend
|
276
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
# compile C with /usr/bin/cc
|
5
|
+
C_FLAGS = -I/usr/local/include -Wall -Wextra -std=c99 -pedantic-errors -fextended-identifiers -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
|
6
|
+
|
7
|
+
C_DEFINES = -DCLAR_FIXTURE_PATH=\"/Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/fixtures/\" -DCLAR_TMPDIR=\"libmtex2MML_tests\"
|
8
|
+
|
@@ -0,0 +1,683 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
#=============================================================================
|
5
|
+
# Special targets provided by cmake.
|
6
|
+
|
7
|
+
# Disable implicit rules so canonical targets will work.
|
8
|
+
.SUFFIXES:
|
9
|
+
|
10
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
11
|
+
SUFFIXES =
|
12
|
+
|
13
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
14
|
+
|
15
|
+
# Suppress display of executed commands.
|
16
|
+
$(VERBOSE).SILENT:
|
17
|
+
|
18
|
+
# A target that is always out of date.
|
19
|
+
cmake_force:
|
20
|
+
.PHONY : cmake_force
|
21
|
+
|
22
|
+
#=============================================================================
|
23
|
+
# Set environment variables for the build.
|
24
|
+
|
25
|
+
# The shell in which to execute make rules.
|
26
|
+
SHELL = /bin/sh
|
27
|
+
|
28
|
+
# The CMake executable.
|
29
|
+
CMAKE_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake
|
30
|
+
|
31
|
+
# The command to remove a file.
|
32
|
+
RM = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E remove -f
|
33
|
+
|
34
|
+
# Escaping for special characters.
|
35
|
+
EQUALS = =
|
36
|
+
|
37
|
+
# The program to use to edit the cache.
|
38
|
+
CMAKE_EDIT_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ccmake
|
39
|
+
|
40
|
+
# The top-level source directory on which CMake was run.
|
41
|
+
CMAKE_SOURCE_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
|
42
|
+
|
43
|
+
# The top-level build directory on which CMake was run.
|
44
|
+
CMAKE_BINARY_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
|
45
|
+
|
46
|
+
# Include any dependencies generated for this target.
|
47
|
+
include CMakeFiles/mtex2MML_clar.dir/depend.make
|
48
|
+
|
49
|
+
# Include the progress variables for this target.
|
50
|
+
include CMakeFiles/mtex2MML_clar.dir/progress.make
|
51
|
+
|
52
|
+
# Include the compile flags for this target's objects.
|
53
|
+
include CMakeFiles/mtex2MML_clar.dir/flags.make
|
54
|
+
|
55
|
+
../tests/clar.suite: ../tests/deps/file2str/file2str.c
|
56
|
+
../tests/clar.suite: ../tests/deps/mkdtemp/mkdtemp.c
|
57
|
+
../tests/clar.suite: ../tests/deps/trim/trim.c
|
58
|
+
../tests/clar.suite: ../tests/clar/fixtures.h
|
59
|
+
../tests/clar.suite: ../tests/clar/fs.h
|
60
|
+
../tests/clar.suite: ../tests/clar/print.h
|
61
|
+
../tests/clar.suite: ../tests/clar/sandbox.h
|
62
|
+
../tests/clar.suite: ../tests/deps/file2str/file2str.h
|
63
|
+
../tests/clar.suite: ../tests/deps/mkdtemp/mkdtemp.h
|
64
|
+
../tests/clar.suite: ../tests/deps/trim/trim.h
|
65
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_1)
|
66
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Generating ../tests/clar.suite"
|
67
|
+
cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests && /usr/local/bin/python generate.py
|
68
|
+
|
69
|
+
parser.c: ../src/parser.y
|
70
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_2)
|
71
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "[BISON][MTEX2MMLPARSER] Building parser with bison 2.3"
|
72
|
+
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
|
73
|
+
|
74
|
+
parser.h: parser.c
|
75
|
+
|
76
|
+
lexer.c: ../src/lexer.l
|
77
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_3)
|
78
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "[FLEX][MTEX2MMLSCANNER] Building scanner with flex 2.5.35"
|
79
|
+
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
|
80
|
+
|
81
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
82
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.o: ../src/colors.c
|
83
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_4)
|
84
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/src/colors.c.o"
|
85
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/colors.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c
|
86
|
+
|
87
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.i: cmake_force
|
88
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/colors.c.i"
|
89
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c > CMakeFiles/mtex2MML_clar.dir/src/colors.c.i
|
90
|
+
|
91
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.s: cmake_force
|
92
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/colors.c.s"
|
93
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/colors.c -o CMakeFiles/mtex2MML_clar.dir/src/colors.c.s
|
94
|
+
|
95
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.requires:
|
96
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.requires
|
97
|
+
|
98
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.provides: CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.requires
|
99
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.provides.build
|
100
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.provides
|
101
|
+
|
102
|
+
CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/src/colors.c.o
|
103
|
+
|
104
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
105
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.o: ../src/em.c
|
106
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_5)
|
107
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/src/em.c.o"
|
108
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/em.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c
|
109
|
+
|
110
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.i: cmake_force
|
111
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/em.c.i"
|
112
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c > CMakeFiles/mtex2MML_clar.dir/src/em.c.i
|
113
|
+
|
114
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.s: cmake_force
|
115
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/em.c.s"
|
116
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/em.c -o CMakeFiles/mtex2MML_clar.dir/src/em.c.s
|
117
|
+
|
118
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.o.requires:
|
119
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/em.c.o.requires
|
120
|
+
|
121
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.o.provides: CMakeFiles/mtex2MML_clar.dir/src/em.c.o.requires
|
122
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/src/em.c.o.provides.build
|
123
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/em.c.o.provides
|
124
|
+
|
125
|
+
CMakeFiles/mtex2MML_clar.dir/src/em.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/src/em.c.o
|
126
|
+
|
127
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
128
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.o: ../src/environment.c
|
129
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_6)
|
130
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/src/environment.c.o"
|
131
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/environment.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c
|
132
|
+
|
133
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.i: cmake_force
|
134
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/environment.c.i"
|
135
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c > CMakeFiles/mtex2MML_clar.dir/src/environment.c.i
|
136
|
+
|
137
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.s: cmake_force
|
138
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/environment.c.s"
|
139
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/environment.c -o CMakeFiles/mtex2MML_clar.dir/src/environment.c.s
|
140
|
+
|
141
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.requires:
|
142
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.requires
|
143
|
+
|
144
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.provides: CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.requires
|
145
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.provides.build
|
146
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.provides
|
147
|
+
|
148
|
+
CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/src/environment.c.o
|
149
|
+
|
150
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
151
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o: ../src/string_extras.c
|
152
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_7)
|
153
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o"
|
154
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c
|
155
|
+
|
156
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i: cmake_force
|
157
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i"
|
158
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c > CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.i
|
159
|
+
|
160
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s: cmake_force
|
161
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s"
|
162
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/src/string_extras.c -o CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.s
|
163
|
+
|
164
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.requires:
|
165
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.requires
|
166
|
+
|
167
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.provides: CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.requires
|
168
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.provides.build
|
169
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.provides
|
170
|
+
|
171
|
+
CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o
|
172
|
+
|
173
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
174
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.o: ../tests/main.c
|
175
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_8)
|
176
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/main.c.o"
|
177
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/main.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c
|
178
|
+
|
179
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.i: cmake_force
|
180
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/main.c.i"
|
181
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c > CMakeFiles/mtex2MML_clar.dir/tests/main.c.i
|
182
|
+
|
183
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.s: cmake_force
|
184
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/main.c.s"
|
185
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/main.c -o CMakeFiles/mtex2MML_clar.dir/tests/main.c.s
|
186
|
+
|
187
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.requires:
|
188
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.requires
|
189
|
+
|
190
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.requires
|
191
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.provides.build
|
192
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.provides
|
193
|
+
|
194
|
+
CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/main.c.o
|
195
|
+
|
196
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
197
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: ../tests/clar.c
|
198
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o: ../tests/clar.suite
|
199
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_9)
|
200
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o"
|
201
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c
|
202
|
+
|
203
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i: cmake_force
|
204
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i"
|
205
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c > CMakeFiles/mtex2MML_clar.dir/tests/clar.c.i
|
206
|
+
|
207
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s: cmake_force
|
208
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s"
|
209
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/clar.c -o CMakeFiles/mtex2MML_clar.dir/tests/clar.c.s
|
210
|
+
|
211
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.requires:
|
212
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.requires
|
213
|
+
|
214
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.requires
|
215
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.provides.build
|
216
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.provides
|
217
|
+
|
218
|
+
CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o
|
219
|
+
|
220
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
221
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.o: ../tests/array.c
|
222
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_10)
|
223
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/array.c.o"
|
224
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/array.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c
|
225
|
+
|
226
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.i: cmake_force
|
227
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/array.c.i"
|
228
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c > CMakeFiles/mtex2MML_clar.dir/tests/array.c.i
|
229
|
+
|
230
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.s: cmake_force
|
231
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/array.c.s"
|
232
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/array.c -o CMakeFiles/mtex2MML_clar.dir/tests/array.c.s
|
233
|
+
|
234
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.requires:
|
235
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.requires
|
236
|
+
|
237
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.requires
|
238
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.provides.build
|
239
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.provides
|
240
|
+
|
241
|
+
CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/array.c.o
|
242
|
+
|
243
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
244
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o: ../tests/basic.c
|
245
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_11)
|
246
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o"
|
247
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c
|
248
|
+
|
249
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i: cmake_force
|
250
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i"
|
251
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c > CMakeFiles/mtex2MML_clar.dir/tests/basic.c.i
|
252
|
+
|
253
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s: cmake_force
|
254
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s"
|
255
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/basic.c -o CMakeFiles/mtex2MML_clar.dir/tests/basic.c.s
|
256
|
+
|
257
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.requires:
|
258
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.requires
|
259
|
+
|
260
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.requires
|
261
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.provides.build
|
262
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.provides
|
263
|
+
|
264
|
+
CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o
|
265
|
+
|
266
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
267
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o: ../tests/cornercases.c
|
268
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_12)
|
269
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o"
|
270
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c
|
271
|
+
|
272
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i: cmake_force
|
273
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i"
|
274
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c > CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.i
|
275
|
+
|
276
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s: cmake_force
|
277
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s"
|
278
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/cornercases.c -o CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.s
|
279
|
+
|
280
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.requires:
|
281
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.requires
|
282
|
+
|
283
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.requires
|
284
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.provides.build
|
285
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.provides
|
286
|
+
|
287
|
+
CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o
|
288
|
+
|
289
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
290
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o: ../tests/delimiters.c
|
291
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_13)
|
292
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o"
|
293
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c
|
294
|
+
|
295
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i: cmake_force
|
296
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i"
|
297
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c > CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.i
|
298
|
+
|
299
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s: cmake_force
|
300
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s"
|
301
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/delimiters.c -o CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.s
|
302
|
+
|
303
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.requires:
|
304
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.requires
|
305
|
+
|
306
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.requires
|
307
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.provides.build
|
308
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.provides
|
309
|
+
|
310
|
+
CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o
|
311
|
+
|
312
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
313
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.o: ../tests/env.c
|
314
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_14)
|
315
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/env.c.o"
|
316
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/env.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c
|
317
|
+
|
318
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.i: cmake_force
|
319
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/env.c.i"
|
320
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c > CMakeFiles/mtex2MML_clar.dir/tests/env.c.i
|
321
|
+
|
322
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.s: cmake_force
|
323
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/env.c.s"
|
324
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/env.c -o CMakeFiles/mtex2MML_clar.dir/tests/env.c.s
|
325
|
+
|
326
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.requires:
|
327
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.requires
|
328
|
+
|
329
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.requires
|
330
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.provides.build
|
331
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.provides
|
332
|
+
|
333
|
+
CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/env.c.o
|
334
|
+
|
335
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
336
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o: ../tests/functions.c
|
337
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_15)
|
338
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o"
|
339
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c
|
340
|
+
|
341
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i: cmake_force
|
342
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i"
|
343
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c > CMakeFiles/mtex2MML_clar.dir/tests/functions.c.i
|
344
|
+
|
345
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s: cmake_force
|
346
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s"
|
347
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/functions.c -o CMakeFiles/mtex2MML_clar.dir/tests/functions.c.s
|
348
|
+
|
349
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.requires:
|
350
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.requires
|
351
|
+
|
352
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.requires
|
353
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.provides.build
|
354
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.provides
|
355
|
+
|
356
|
+
CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o
|
357
|
+
|
358
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
359
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o: ../tests/helpers.c
|
360
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_16)
|
361
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o"
|
362
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c
|
363
|
+
|
364
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i: cmake_force
|
365
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i"
|
366
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c > CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.i
|
367
|
+
|
368
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s: cmake_force
|
369
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s"
|
370
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/helpers.c -o CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.s
|
371
|
+
|
372
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.requires:
|
373
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.requires
|
374
|
+
|
375
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.requires
|
376
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.provides.build
|
377
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.provides
|
378
|
+
|
379
|
+
CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o
|
380
|
+
|
381
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
382
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o: ../tests/maliciousness.c
|
383
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_17)
|
384
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o"
|
385
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c
|
386
|
+
|
387
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i: cmake_force
|
388
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i"
|
389
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c > CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.i
|
390
|
+
|
391
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s: cmake_force
|
392
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s"
|
393
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/maliciousness.c -o CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.s
|
394
|
+
|
395
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.requires:
|
396
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.requires
|
397
|
+
|
398
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.requires
|
399
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.provides.build
|
400
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.provides
|
401
|
+
|
402
|
+
CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o
|
403
|
+
|
404
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
405
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o: ../tests/mathjax.c
|
406
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_18)
|
407
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o"
|
408
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c
|
409
|
+
|
410
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i: cmake_force
|
411
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i"
|
412
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c > CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.i
|
413
|
+
|
414
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s: cmake_force
|
415
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s"
|
416
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/mathjax.c -o CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.s
|
417
|
+
|
418
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.requires:
|
419
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.requires
|
420
|
+
|
421
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.requires
|
422
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.provides.build
|
423
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.provides
|
424
|
+
|
425
|
+
CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o
|
426
|
+
|
427
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
428
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o: ../tests/numbered_equations.c
|
429
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_19)
|
430
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o"
|
431
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c
|
432
|
+
|
433
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i: cmake_force
|
434
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i"
|
435
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c > CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.i
|
436
|
+
|
437
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s: cmake_force
|
438
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s"
|
439
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/numbered_equations.c -o CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.s
|
440
|
+
|
441
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.requires:
|
442
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.requires
|
443
|
+
|
444
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.requires
|
445
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.provides.build
|
446
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.provides
|
447
|
+
|
448
|
+
CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o
|
449
|
+
|
450
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
451
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o: ../tests/performance.c
|
452
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_20)
|
453
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o"
|
454
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c
|
455
|
+
|
456
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i: cmake_force
|
457
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i"
|
458
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c > CMakeFiles/mtex2MML_clar.dir/tests/performance.c.i
|
459
|
+
|
460
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s: cmake_force
|
461
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s"
|
462
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests/performance.c -o CMakeFiles/mtex2MML_clar.dir/tests/performance.c.s
|
463
|
+
|
464
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.requires:
|
465
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.requires
|
466
|
+
|
467
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.requires
|
468
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.provides.build
|
469
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.provides
|
470
|
+
|
471
|
+
CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o
|
472
|
+
|
473
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
474
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o: ../tests/deps/file2str/file2str.c
|
475
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_21)
|
476
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o"
|
477
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
478
|
+
|
479
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.i: cmake_force
|
480
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.i"
|
481
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
482
|
+
|
483
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.s: cmake_force
|
484
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.s"
|
485
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
486
|
+
|
487
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.requires:
|
488
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.requires
|
489
|
+
|
490
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.requires
|
491
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.provides.build
|
492
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.provides
|
493
|
+
|
494
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o
|
495
|
+
|
496
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
497
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o: ../tests/deps/mkdtemp/mkdtemp.c
|
498
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_22)
|
499
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o"
|
500
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
501
|
+
|
502
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.i: cmake_force
|
503
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.i"
|
504
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
505
|
+
|
506
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.s: cmake_force
|
507
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.s"
|
508
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
509
|
+
|
510
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.requires:
|
511
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.requires
|
512
|
+
|
513
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.requires
|
514
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.provides.build
|
515
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.provides
|
516
|
+
|
517
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o
|
518
|
+
|
519
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
520
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o: ../tests/deps/trim/trim.c
|
521
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_23)
|
522
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o"
|
523
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
524
|
+
|
525
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.i: cmake_force
|
526
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.i"
|
527
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
528
|
+
|
529
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.s: cmake_force
|
530
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.s"
|
531
|
+
/usr/bin/cc $(C_DEFINES) $(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
|
532
|
+
|
533
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.requires:
|
534
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.requires
|
535
|
+
|
536
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.provides: CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.requires
|
537
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.provides.build
|
538
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.provides
|
539
|
+
|
540
|
+
CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o
|
541
|
+
|
542
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
543
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.o: parser.c
|
544
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_24)
|
545
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/parser.c.o"
|
546
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/parser.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c
|
547
|
+
|
548
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.i: cmake_force
|
549
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/parser.c.i"
|
550
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c > CMakeFiles/mtex2MML_clar.dir/parser.c.i
|
551
|
+
|
552
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.s: cmake_force
|
553
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/parser.c.s"
|
554
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/parser.c -o CMakeFiles/mtex2MML_clar.dir/parser.c.s
|
555
|
+
|
556
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.o.requires:
|
557
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/parser.c.o.requires
|
558
|
+
|
559
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.o.provides: CMakeFiles/mtex2MML_clar.dir/parser.c.o.requires
|
560
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/parser.c.o.provides.build
|
561
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/parser.c.o.provides
|
562
|
+
|
563
|
+
CMakeFiles/mtex2MML_clar.dir/parser.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/parser.c.o
|
564
|
+
|
565
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o: CMakeFiles/mtex2MML_clar.dir/flags.make
|
566
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o: lexer.c
|
567
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o: parser.h
|
568
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles $(CMAKE_PROGRESS_25)
|
569
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
|
570
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/mtex2MML_clar.dir/lexer.c.o -c /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c
|
571
|
+
|
572
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.i: cmake_force
|
573
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/mtex2MML_clar.dir/lexer.c.i"
|
574
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -E /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c > CMakeFiles/mtex2MML_clar.dir/lexer.c.i
|
575
|
+
|
576
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.s: cmake_force
|
577
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/mtex2MML_clar.dir/lexer.c.s"
|
578
|
+
/usr/bin/cc $(C_DEFINES) $(C_FLAGS) -S /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/lexer.c -o CMakeFiles/mtex2MML_clar.dir/lexer.c.s
|
579
|
+
|
580
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o.requires:
|
581
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/lexer.c.o.requires
|
582
|
+
|
583
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o.provides: CMakeFiles/mtex2MML_clar.dir/lexer.c.o.requires
|
584
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/lexer.c.o.provides.build
|
585
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/lexer.c.o.provides
|
586
|
+
|
587
|
+
CMakeFiles/mtex2MML_clar.dir/lexer.c.o.provides.build: CMakeFiles/mtex2MML_clar.dir/lexer.c.o
|
588
|
+
|
589
|
+
# Object files for target mtex2MML_clar
|
590
|
+
mtex2MML_clar_OBJECTS = \
|
591
|
+
"CMakeFiles/mtex2MML_clar.dir/src/colors.c.o" \
|
592
|
+
"CMakeFiles/mtex2MML_clar.dir/src/em.c.o" \
|
593
|
+
"CMakeFiles/mtex2MML_clar.dir/src/environment.c.o" \
|
594
|
+
"CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o" \
|
595
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/main.c.o" \
|
596
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o" \
|
597
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/array.c.o" \
|
598
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o" \
|
599
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o" \
|
600
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o" \
|
601
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/env.c.o" \
|
602
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o" \
|
603
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o" \
|
604
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o" \
|
605
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o" \
|
606
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o" \
|
607
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o" \
|
608
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o" \
|
609
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o" \
|
610
|
+
"CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o" \
|
611
|
+
"CMakeFiles/mtex2MML_clar.dir/parser.c.o" \
|
612
|
+
"CMakeFiles/mtex2MML_clar.dir/lexer.c.o"
|
613
|
+
|
614
|
+
# External object files for target mtex2MML_clar
|
615
|
+
mtex2MML_clar_EXTERNAL_OBJECTS =
|
616
|
+
|
617
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/colors.c.o
|
618
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/em.c.o
|
619
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/environment.c.o
|
620
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o
|
621
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/main.c.o
|
622
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o
|
623
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/array.c.o
|
624
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o
|
625
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o
|
626
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o
|
627
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/env.c.o
|
628
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o
|
629
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o
|
630
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o
|
631
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o
|
632
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o
|
633
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o
|
634
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o
|
635
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o
|
636
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o
|
637
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/parser.c.o
|
638
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/lexer.c.o
|
639
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/build.make
|
640
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/link.txt
|
641
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C executable mtex2MML_clar"
|
642
|
+
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/mtex2MML_clar.dir/link.txt --verbose=$(VERBOSE)
|
643
|
+
cd /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/tests && /usr/local/bin/python mathjax_generate.py
|
644
|
+
|
645
|
+
# Rule to build all files generated by this target.
|
646
|
+
CMakeFiles/mtex2MML_clar.dir/build: mtex2MML_clar
|
647
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/build
|
648
|
+
|
649
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/src/colors.c.o.requires
|
650
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/src/em.c.o.requires
|
651
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/src/environment.c.o.requires
|
652
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/src/string_extras.c.o.requires
|
653
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/main.c.o.requires
|
654
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/clar.c.o.requires
|
655
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/array.c.o.requires
|
656
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/basic.c.o.requires
|
657
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/cornercases.c.o.requires
|
658
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/delimiters.c.o.requires
|
659
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/env.c.o.requires
|
660
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/functions.c.o.requires
|
661
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/helpers.c.o.requires
|
662
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/maliciousness.c.o.requires
|
663
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/mathjax.c.o.requires
|
664
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/numbered_equations.c.o.requires
|
665
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/performance.c.o.requires
|
666
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/deps/file2str/file2str.c.o.requires
|
667
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/deps/mkdtemp/mkdtemp.c.o.requires
|
668
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/tests/deps/trim/trim.c.o.requires
|
669
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/parser.c.o.requires
|
670
|
+
CMakeFiles/mtex2MML_clar.dir/requires: CMakeFiles/mtex2MML_clar.dir/lexer.c.o.requires
|
671
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/requires
|
672
|
+
|
673
|
+
CMakeFiles/mtex2MML_clar.dir/clean:
|
674
|
+
$(CMAKE_COMMAND) -P CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake
|
675
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/clean
|
676
|
+
|
677
|
+
CMakeFiles/mtex2MML_clar.dir/depend: ../tests/clar.suite
|
678
|
+
CMakeFiles/mtex2MML_clar.dir/depend: parser.c
|
679
|
+
CMakeFiles/mtex2MML_clar.dir/depend: parser.h
|
680
|
+
CMakeFiles/mtex2MML_clar.dir/depend: lexer.c
|
681
|
+
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)
|
682
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/depend
|
683
|
+
|