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 @@
|
|
1
|
+
|
@@ -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 ExperimentalStart.
|
47
|
+
|
48
|
+
# Include the progress variables for this target.
|
49
|
+
include CMakeFiles/ExperimentalStart.dir/progress.make
|
50
|
+
|
51
|
+
CMakeFiles/ExperimentalStart:
|
52
|
+
/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ctest -D ExperimentalStart
|
53
|
+
|
54
|
+
ExperimentalStart: CMakeFiles/ExperimentalStart
|
55
|
+
ExperimentalStart: CMakeFiles/ExperimentalStart.dir/build.make
|
56
|
+
.PHONY : ExperimentalStart
|
57
|
+
|
58
|
+
# Rule to build all files generated by this target.
|
59
|
+
CMakeFiles/ExperimentalStart.dir/build: ExperimentalStart
|
60
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/build
|
61
|
+
|
62
|
+
CMakeFiles/ExperimentalStart.dir/clean:
|
63
|
+
$(CMAKE_COMMAND) -P CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake
|
64
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/clean
|
65
|
+
|
66
|
+
CMakeFiles/ExperimentalStart.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/ExperimentalStart.dir/DependInfo.cmake --color=$(COLOR)
|
68
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/depend
|
69
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -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 ExperimentalSubmit.
|
47
|
+
|
48
|
+
# Include the progress variables for this target.
|
49
|
+
include CMakeFiles/ExperimentalSubmit.dir/progress.make
|
50
|
+
|
51
|
+
CMakeFiles/ExperimentalSubmit:
|
52
|
+
/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ctest -D ExperimentalSubmit
|
53
|
+
|
54
|
+
ExperimentalSubmit: CMakeFiles/ExperimentalSubmit
|
55
|
+
ExperimentalSubmit: CMakeFiles/ExperimentalSubmit.dir/build.make
|
56
|
+
.PHONY : ExperimentalSubmit
|
57
|
+
|
58
|
+
# Rule to build all files generated by this target.
|
59
|
+
CMakeFiles/ExperimentalSubmit.dir/build: ExperimentalSubmit
|
60
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/build
|
61
|
+
|
62
|
+
CMakeFiles/ExperimentalSubmit.dir/clean:
|
63
|
+
$(CMAKE_COMMAND) -P CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake
|
64
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/clean
|
65
|
+
|
66
|
+
CMakeFiles/ExperimentalSubmit.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/ExperimentalSubmit.dir/DependInfo.cmake --color=$(COLOR)
|
68
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/depend
|
69
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -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 ExperimentalTest.
|
47
|
+
|
48
|
+
# Include the progress variables for this target.
|
49
|
+
include CMakeFiles/ExperimentalTest.dir/progress.make
|
50
|
+
|
51
|
+
CMakeFiles/ExperimentalTest:
|
52
|
+
/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ctest -D ExperimentalTest
|
53
|
+
|
54
|
+
ExperimentalTest: CMakeFiles/ExperimentalTest
|
55
|
+
ExperimentalTest: CMakeFiles/ExperimentalTest.dir/build.make
|
56
|
+
.PHONY : ExperimentalTest
|
57
|
+
|
58
|
+
# Rule to build all files generated by this target.
|
59
|
+
CMakeFiles/ExperimentalTest.dir/build: ExperimentalTest
|
60
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/build
|
61
|
+
|
62
|
+
CMakeFiles/ExperimentalTest.dir/clean:
|
63
|
+
$(CMAKE_COMMAND) -P CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake
|
64
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/clean
|
65
|
+
|
66
|
+
CMakeFiles/ExperimentalTest.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/ExperimentalTest.dir/DependInfo.cmake --color=$(COLOR)
|
68
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/depend
|
69
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -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 ExperimentalUpdate.
|
47
|
+
|
48
|
+
# Include the progress variables for this target.
|
49
|
+
include CMakeFiles/ExperimentalUpdate.dir/progress.make
|
50
|
+
|
51
|
+
CMakeFiles/ExperimentalUpdate:
|
52
|
+
/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ctest -D ExperimentalUpdate
|
53
|
+
|
54
|
+
ExperimentalUpdate: CMakeFiles/ExperimentalUpdate
|
55
|
+
ExperimentalUpdate: CMakeFiles/ExperimentalUpdate.dir/build.make
|
56
|
+
.PHONY : ExperimentalUpdate
|
57
|
+
|
58
|
+
# Rule to build all files generated by this target.
|
59
|
+
CMakeFiles/ExperimentalUpdate.dir/build: ExperimentalUpdate
|
60
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/build
|
61
|
+
|
62
|
+
CMakeFiles/ExperimentalUpdate.dir/clean:
|
63
|
+
$(CMAKE_COMMAND) -P CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake
|
64
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/clean
|
65
|
+
|
66
|
+
CMakeFiles/ExperimentalUpdate.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/ExperimentalUpdate.dir/DependInfo.cmake --color=$(COLOR)
|
68
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/depend
|
69
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,1137 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
+
|
4
|
+
# Default target executed when no arguments are given to make.
|
5
|
+
default_target: all
|
6
|
+
.PHONY : default_target
|
7
|
+
|
8
|
+
# The main recursive all target
|
9
|
+
all:
|
10
|
+
.PHONY : all
|
11
|
+
|
12
|
+
# The main recursive preinstall target
|
13
|
+
preinstall:
|
14
|
+
.PHONY : preinstall
|
15
|
+
|
16
|
+
#=============================================================================
|
17
|
+
# Special targets provided by cmake.
|
18
|
+
|
19
|
+
# Disable implicit rules so canonical targets will work.
|
20
|
+
.SUFFIXES:
|
21
|
+
|
22
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
23
|
+
SUFFIXES =
|
24
|
+
|
25
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
26
|
+
|
27
|
+
# Suppress display of executed commands.
|
28
|
+
$(VERBOSE).SILENT:
|
29
|
+
|
30
|
+
# A target that is always out of date.
|
31
|
+
cmake_force:
|
32
|
+
.PHONY : cmake_force
|
33
|
+
|
34
|
+
#=============================================================================
|
35
|
+
# Set environment variables for the build.
|
36
|
+
|
37
|
+
# The shell in which to execute make rules.
|
38
|
+
SHELL = /bin/sh
|
39
|
+
|
40
|
+
# The CMake executable.
|
41
|
+
CMAKE_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake
|
42
|
+
|
43
|
+
# The command to remove a file.
|
44
|
+
RM = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E remove -f
|
45
|
+
|
46
|
+
# Escaping for special characters.
|
47
|
+
EQUALS = =
|
48
|
+
|
49
|
+
# The program to use to edit the cache.
|
50
|
+
CMAKE_EDIT_COMMAND = /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/ccmake
|
51
|
+
|
52
|
+
# The top-level source directory on which CMake was run.
|
53
|
+
CMAKE_SOURCE_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML
|
54
|
+
|
55
|
+
# The top-level build directory on which CMake was run.
|
56
|
+
CMAKE_BINARY_DIR = /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build
|
57
|
+
|
58
|
+
#=============================================================================
|
59
|
+
# Target rules for target CMakeFiles/Continuous.dir
|
60
|
+
|
61
|
+
# All Build rule for target.
|
62
|
+
CMakeFiles/Continuous.dir/all:
|
63
|
+
$(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/depend
|
64
|
+
$(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/build
|
65
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
66
|
+
@echo "Built target Continuous"
|
67
|
+
.PHONY : CMakeFiles/Continuous.dir/all
|
68
|
+
|
69
|
+
# Build rule for subdir invocation for target.
|
70
|
+
CMakeFiles/Continuous.dir/rule: cmake_check_build_system
|
71
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
72
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Continuous.dir/all
|
73
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
74
|
+
.PHONY : CMakeFiles/Continuous.dir/rule
|
75
|
+
|
76
|
+
# Convenience name for target.
|
77
|
+
Continuous: CMakeFiles/Continuous.dir/rule
|
78
|
+
.PHONY : Continuous
|
79
|
+
|
80
|
+
# clean rule for target.
|
81
|
+
CMakeFiles/Continuous.dir/clean:
|
82
|
+
$(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/clean
|
83
|
+
.PHONY : CMakeFiles/Continuous.dir/clean
|
84
|
+
|
85
|
+
# clean rule for target.
|
86
|
+
clean: CMakeFiles/Continuous.dir/clean
|
87
|
+
.PHONY : clean
|
88
|
+
|
89
|
+
#=============================================================================
|
90
|
+
# Target rules for target CMakeFiles/ContinuousBuild.dir
|
91
|
+
|
92
|
+
# All Build rule for target.
|
93
|
+
CMakeFiles/ContinuousBuild.dir/all:
|
94
|
+
$(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/depend
|
95
|
+
$(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/build
|
96
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
97
|
+
@echo "Built target ContinuousBuild"
|
98
|
+
.PHONY : CMakeFiles/ContinuousBuild.dir/all
|
99
|
+
|
100
|
+
# Build rule for subdir invocation for target.
|
101
|
+
CMakeFiles/ContinuousBuild.dir/rule: cmake_check_build_system
|
102
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
103
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousBuild.dir/all
|
104
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
105
|
+
.PHONY : CMakeFiles/ContinuousBuild.dir/rule
|
106
|
+
|
107
|
+
# Convenience name for target.
|
108
|
+
ContinuousBuild: CMakeFiles/ContinuousBuild.dir/rule
|
109
|
+
.PHONY : ContinuousBuild
|
110
|
+
|
111
|
+
# clean rule for target.
|
112
|
+
CMakeFiles/ContinuousBuild.dir/clean:
|
113
|
+
$(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/clean
|
114
|
+
.PHONY : CMakeFiles/ContinuousBuild.dir/clean
|
115
|
+
|
116
|
+
# clean rule for target.
|
117
|
+
clean: CMakeFiles/ContinuousBuild.dir/clean
|
118
|
+
.PHONY : clean
|
119
|
+
|
120
|
+
#=============================================================================
|
121
|
+
# Target rules for target CMakeFiles/ContinuousConfigure.dir
|
122
|
+
|
123
|
+
# All Build rule for target.
|
124
|
+
CMakeFiles/ContinuousConfigure.dir/all:
|
125
|
+
$(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/depend
|
126
|
+
$(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/build
|
127
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
128
|
+
@echo "Built target ContinuousConfigure"
|
129
|
+
.PHONY : CMakeFiles/ContinuousConfigure.dir/all
|
130
|
+
|
131
|
+
# Build rule for subdir invocation for target.
|
132
|
+
CMakeFiles/ContinuousConfigure.dir/rule: cmake_check_build_system
|
133
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
134
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousConfigure.dir/all
|
135
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
136
|
+
.PHONY : CMakeFiles/ContinuousConfigure.dir/rule
|
137
|
+
|
138
|
+
# Convenience name for target.
|
139
|
+
ContinuousConfigure: CMakeFiles/ContinuousConfigure.dir/rule
|
140
|
+
.PHONY : ContinuousConfigure
|
141
|
+
|
142
|
+
# clean rule for target.
|
143
|
+
CMakeFiles/ContinuousConfigure.dir/clean:
|
144
|
+
$(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/clean
|
145
|
+
.PHONY : CMakeFiles/ContinuousConfigure.dir/clean
|
146
|
+
|
147
|
+
# clean rule for target.
|
148
|
+
clean: CMakeFiles/ContinuousConfigure.dir/clean
|
149
|
+
.PHONY : clean
|
150
|
+
|
151
|
+
#=============================================================================
|
152
|
+
# Target rules for target CMakeFiles/ContinuousCoverage.dir
|
153
|
+
|
154
|
+
# All Build rule for target.
|
155
|
+
CMakeFiles/ContinuousCoverage.dir/all:
|
156
|
+
$(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/depend
|
157
|
+
$(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/build
|
158
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
159
|
+
@echo "Built target ContinuousCoverage"
|
160
|
+
.PHONY : CMakeFiles/ContinuousCoverage.dir/all
|
161
|
+
|
162
|
+
# Build rule for subdir invocation for target.
|
163
|
+
CMakeFiles/ContinuousCoverage.dir/rule: cmake_check_build_system
|
164
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
165
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousCoverage.dir/all
|
166
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
167
|
+
.PHONY : CMakeFiles/ContinuousCoverage.dir/rule
|
168
|
+
|
169
|
+
# Convenience name for target.
|
170
|
+
ContinuousCoverage: CMakeFiles/ContinuousCoverage.dir/rule
|
171
|
+
.PHONY : ContinuousCoverage
|
172
|
+
|
173
|
+
# clean rule for target.
|
174
|
+
CMakeFiles/ContinuousCoverage.dir/clean:
|
175
|
+
$(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/clean
|
176
|
+
.PHONY : CMakeFiles/ContinuousCoverage.dir/clean
|
177
|
+
|
178
|
+
# clean rule for target.
|
179
|
+
clean: CMakeFiles/ContinuousCoverage.dir/clean
|
180
|
+
.PHONY : clean
|
181
|
+
|
182
|
+
#=============================================================================
|
183
|
+
# Target rules for target CMakeFiles/ContinuousMemCheck.dir
|
184
|
+
|
185
|
+
# All Build rule for target.
|
186
|
+
CMakeFiles/ContinuousMemCheck.dir/all:
|
187
|
+
$(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/depend
|
188
|
+
$(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/build
|
189
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
190
|
+
@echo "Built target ContinuousMemCheck"
|
191
|
+
.PHONY : CMakeFiles/ContinuousMemCheck.dir/all
|
192
|
+
|
193
|
+
# Build rule for subdir invocation for target.
|
194
|
+
CMakeFiles/ContinuousMemCheck.dir/rule: cmake_check_build_system
|
195
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
196
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousMemCheck.dir/all
|
197
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
198
|
+
.PHONY : CMakeFiles/ContinuousMemCheck.dir/rule
|
199
|
+
|
200
|
+
# Convenience name for target.
|
201
|
+
ContinuousMemCheck: CMakeFiles/ContinuousMemCheck.dir/rule
|
202
|
+
.PHONY : ContinuousMemCheck
|
203
|
+
|
204
|
+
# clean rule for target.
|
205
|
+
CMakeFiles/ContinuousMemCheck.dir/clean:
|
206
|
+
$(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/clean
|
207
|
+
.PHONY : CMakeFiles/ContinuousMemCheck.dir/clean
|
208
|
+
|
209
|
+
# clean rule for target.
|
210
|
+
clean: CMakeFiles/ContinuousMemCheck.dir/clean
|
211
|
+
.PHONY : clean
|
212
|
+
|
213
|
+
#=============================================================================
|
214
|
+
# Target rules for target CMakeFiles/ContinuousStart.dir
|
215
|
+
|
216
|
+
# All Build rule for target.
|
217
|
+
CMakeFiles/ContinuousStart.dir/all:
|
218
|
+
$(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/depend
|
219
|
+
$(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/build
|
220
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
221
|
+
@echo "Built target ContinuousStart"
|
222
|
+
.PHONY : CMakeFiles/ContinuousStart.dir/all
|
223
|
+
|
224
|
+
# Build rule for subdir invocation for target.
|
225
|
+
CMakeFiles/ContinuousStart.dir/rule: cmake_check_build_system
|
226
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
227
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousStart.dir/all
|
228
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
229
|
+
.PHONY : CMakeFiles/ContinuousStart.dir/rule
|
230
|
+
|
231
|
+
# Convenience name for target.
|
232
|
+
ContinuousStart: CMakeFiles/ContinuousStart.dir/rule
|
233
|
+
.PHONY : ContinuousStart
|
234
|
+
|
235
|
+
# clean rule for target.
|
236
|
+
CMakeFiles/ContinuousStart.dir/clean:
|
237
|
+
$(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/clean
|
238
|
+
.PHONY : CMakeFiles/ContinuousStart.dir/clean
|
239
|
+
|
240
|
+
# clean rule for target.
|
241
|
+
clean: CMakeFiles/ContinuousStart.dir/clean
|
242
|
+
.PHONY : clean
|
243
|
+
|
244
|
+
#=============================================================================
|
245
|
+
# Target rules for target CMakeFiles/ContinuousSubmit.dir
|
246
|
+
|
247
|
+
# All Build rule for target.
|
248
|
+
CMakeFiles/ContinuousSubmit.dir/all:
|
249
|
+
$(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/depend
|
250
|
+
$(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/build
|
251
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
252
|
+
@echo "Built target ContinuousSubmit"
|
253
|
+
.PHONY : CMakeFiles/ContinuousSubmit.dir/all
|
254
|
+
|
255
|
+
# Build rule for subdir invocation for target.
|
256
|
+
CMakeFiles/ContinuousSubmit.dir/rule: cmake_check_build_system
|
257
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
258
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousSubmit.dir/all
|
259
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
260
|
+
.PHONY : CMakeFiles/ContinuousSubmit.dir/rule
|
261
|
+
|
262
|
+
# Convenience name for target.
|
263
|
+
ContinuousSubmit: CMakeFiles/ContinuousSubmit.dir/rule
|
264
|
+
.PHONY : ContinuousSubmit
|
265
|
+
|
266
|
+
# clean rule for target.
|
267
|
+
CMakeFiles/ContinuousSubmit.dir/clean:
|
268
|
+
$(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/clean
|
269
|
+
.PHONY : CMakeFiles/ContinuousSubmit.dir/clean
|
270
|
+
|
271
|
+
# clean rule for target.
|
272
|
+
clean: CMakeFiles/ContinuousSubmit.dir/clean
|
273
|
+
.PHONY : clean
|
274
|
+
|
275
|
+
#=============================================================================
|
276
|
+
# Target rules for target CMakeFiles/ContinuousTest.dir
|
277
|
+
|
278
|
+
# All Build rule for target.
|
279
|
+
CMakeFiles/ContinuousTest.dir/all:
|
280
|
+
$(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/depend
|
281
|
+
$(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/build
|
282
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
283
|
+
@echo "Built target ContinuousTest"
|
284
|
+
.PHONY : CMakeFiles/ContinuousTest.dir/all
|
285
|
+
|
286
|
+
# Build rule for subdir invocation for target.
|
287
|
+
CMakeFiles/ContinuousTest.dir/rule: cmake_check_build_system
|
288
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
289
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousTest.dir/all
|
290
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
291
|
+
.PHONY : CMakeFiles/ContinuousTest.dir/rule
|
292
|
+
|
293
|
+
# Convenience name for target.
|
294
|
+
ContinuousTest: CMakeFiles/ContinuousTest.dir/rule
|
295
|
+
.PHONY : ContinuousTest
|
296
|
+
|
297
|
+
# clean rule for target.
|
298
|
+
CMakeFiles/ContinuousTest.dir/clean:
|
299
|
+
$(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/clean
|
300
|
+
.PHONY : CMakeFiles/ContinuousTest.dir/clean
|
301
|
+
|
302
|
+
# clean rule for target.
|
303
|
+
clean: CMakeFiles/ContinuousTest.dir/clean
|
304
|
+
.PHONY : clean
|
305
|
+
|
306
|
+
#=============================================================================
|
307
|
+
# Target rules for target CMakeFiles/ContinuousUpdate.dir
|
308
|
+
|
309
|
+
# All Build rule for target.
|
310
|
+
CMakeFiles/ContinuousUpdate.dir/all:
|
311
|
+
$(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/depend
|
312
|
+
$(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/build
|
313
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
314
|
+
@echo "Built target ContinuousUpdate"
|
315
|
+
.PHONY : CMakeFiles/ContinuousUpdate.dir/all
|
316
|
+
|
317
|
+
# Build rule for subdir invocation for target.
|
318
|
+
CMakeFiles/ContinuousUpdate.dir/rule: cmake_check_build_system
|
319
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
320
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousUpdate.dir/all
|
321
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
322
|
+
.PHONY : CMakeFiles/ContinuousUpdate.dir/rule
|
323
|
+
|
324
|
+
# Convenience name for target.
|
325
|
+
ContinuousUpdate: CMakeFiles/ContinuousUpdate.dir/rule
|
326
|
+
.PHONY : ContinuousUpdate
|
327
|
+
|
328
|
+
# clean rule for target.
|
329
|
+
CMakeFiles/ContinuousUpdate.dir/clean:
|
330
|
+
$(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/clean
|
331
|
+
.PHONY : CMakeFiles/ContinuousUpdate.dir/clean
|
332
|
+
|
333
|
+
# clean rule for target.
|
334
|
+
clean: CMakeFiles/ContinuousUpdate.dir/clean
|
335
|
+
.PHONY : clean
|
336
|
+
|
337
|
+
#=============================================================================
|
338
|
+
# Target rules for target CMakeFiles/Experimental.dir
|
339
|
+
|
340
|
+
# All Build rule for target.
|
341
|
+
CMakeFiles/Experimental.dir/all:
|
342
|
+
$(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/depend
|
343
|
+
$(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/build
|
344
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
345
|
+
@echo "Built target Experimental"
|
346
|
+
.PHONY : CMakeFiles/Experimental.dir/all
|
347
|
+
|
348
|
+
# Build rule for subdir invocation for target.
|
349
|
+
CMakeFiles/Experimental.dir/rule: cmake_check_build_system
|
350
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
351
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Experimental.dir/all
|
352
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
353
|
+
.PHONY : CMakeFiles/Experimental.dir/rule
|
354
|
+
|
355
|
+
# Convenience name for target.
|
356
|
+
Experimental: CMakeFiles/Experimental.dir/rule
|
357
|
+
.PHONY : Experimental
|
358
|
+
|
359
|
+
# clean rule for target.
|
360
|
+
CMakeFiles/Experimental.dir/clean:
|
361
|
+
$(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/clean
|
362
|
+
.PHONY : CMakeFiles/Experimental.dir/clean
|
363
|
+
|
364
|
+
# clean rule for target.
|
365
|
+
clean: CMakeFiles/Experimental.dir/clean
|
366
|
+
.PHONY : clean
|
367
|
+
|
368
|
+
#=============================================================================
|
369
|
+
# Target rules for target CMakeFiles/ExperimentalBuild.dir
|
370
|
+
|
371
|
+
# All Build rule for target.
|
372
|
+
CMakeFiles/ExperimentalBuild.dir/all:
|
373
|
+
$(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/depend
|
374
|
+
$(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/build
|
375
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
376
|
+
@echo "Built target ExperimentalBuild"
|
377
|
+
.PHONY : CMakeFiles/ExperimentalBuild.dir/all
|
378
|
+
|
379
|
+
# Build rule for subdir invocation for target.
|
380
|
+
CMakeFiles/ExperimentalBuild.dir/rule: cmake_check_build_system
|
381
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
382
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalBuild.dir/all
|
383
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
384
|
+
.PHONY : CMakeFiles/ExperimentalBuild.dir/rule
|
385
|
+
|
386
|
+
# Convenience name for target.
|
387
|
+
ExperimentalBuild: CMakeFiles/ExperimentalBuild.dir/rule
|
388
|
+
.PHONY : ExperimentalBuild
|
389
|
+
|
390
|
+
# clean rule for target.
|
391
|
+
CMakeFiles/ExperimentalBuild.dir/clean:
|
392
|
+
$(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/clean
|
393
|
+
.PHONY : CMakeFiles/ExperimentalBuild.dir/clean
|
394
|
+
|
395
|
+
# clean rule for target.
|
396
|
+
clean: CMakeFiles/ExperimentalBuild.dir/clean
|
397
|
+
.PHONY : clean
|
398
|
+
|
399
|
+
#=============================================================================
|
400
|
+
# Target rules for target CMakeFiles/ExperimentalConfigure.dir
|
401
|
+
|
402
|
+
# All Build rule for target.
|
403
|
+
CMakeFiles/ExperimentalConfigure.dir/all:
|
404
|
+
$(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/depend
|
405
|
+
$(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/build
|
406
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
407
|
+
@echo "Built target ExperimentalConfigure"
|
408
|
+
.PHONY : CMakeFiles/ExperimentalConfigure.dir/all
|
409
|
+
|
410
|
+
# Build rule for subdir invocation for target.
|
411
|
+
CMakeFiles/ExperimentalConfigure.dir/rule: cmake_check_build_system
|
412
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
413
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalConfigure.dir/all
|
414
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
415
|
+
.PHONY : CMakeFiles/ExperimentalConfigure.dir/rule
|
416
|
+
|
417
|
+
# Convenience name for target.
|
418
|
+
ExperimentalConfigure: CMakeFiles/ExperimentalConfigure.dir/rule
|
419
|
+
.PHONY : ExperimentalConfigure
|
420
|
+
|
421
|
+
# clean rule for target.
|
422
|
+
CMakeFiles/ExperimentalConfigure.dir/clean:
|
423
|
+
$(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/clean
|
424
|
+
.PHONY : CMakeFiles/ExperimentalConfigure.dir/clean
|
425
|
+
|
426
|
+
# clean rule for target.
|
427
|
+
clean: CMakeFiles/ExperimentalConfigure.dir/clean
|
428
|
+
.PHONY : clean
|
429
|
+
|
430
|
+
#=============================================================================
|
431
|
+
# Target rules for target CMakeFiles/ExperimentalCoverage.dir
|
432
|
+
|
433
|
+
# All Build rule for target.
|
434
|
+
CMakeFiles/ExperimentalCoverage.dir/all:
|
435
|
+
$(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/depend
|
436
|
+
$(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/build
|
437
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
438
|
+
@echo "Built target ExperimentalCoverage"
|
439
|
+
.PHONY : CMakeFiles/ExperimentalCoverage.dir/all
|
440
|
+
|
441
|
+
# Build rule for subdir invocation for target.
|
442
|
+
CMakeFiles/ExperimentalCoverage.dir/rule: cmake_check_build_system
|
443
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
444
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalCoverage.dir/all
|
445
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
446
|
+
.PHONY : CMakeFiles/ExperimentalCoverage.dir/rule
|
447
|
+
|
448
|
+
# Convenience name for target.
|
449
|
+
ExperimentalCoverage: CMakeFiles/ExperimentalCoverage.dir/rule
|
450
|
+
.PHONY : ExperimentalCoverage
|
451
|
+
|
452
|
+
# clean rule for target.
|
453
|
+
CMakeFiles/ExperimentalCoverage.dir/clean:
|
454
|
+
$(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/clean
|
455
|
+
.PHONY : CMakeFiles/ExperimentalCoverage.dir/clean
|
456
|
+
|
457
|
+
# clean rule for target.
|
458
|
+
clean: CMakeFiles/ExperimentalCoverage.dir/clean
|
459
|
+
.PHONY : clean
|
460
|
+
|
461
|
+
#=============================================================================
|
462
|
+
# Target rules for target CMakeFiles/ExperimentalMemCheck.dir
|
463
|
+
|
464
|
+
# All Build rule for target.
|
465
|
+
CMakeFiles/ExperimentalMemCheck.dir/all:
|
466
|
+
$(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/depend
|
467
|
+
$(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/build
|
468
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
469
|
+
@echo "Built target ExperimentalMemCheck"
|
470
|
+
.PHONY : CMakeFiles/ExperimentalMemCheck.dir/all
|
471
|
+
|
472
|
+
# Build rule for subdir invocation for target.
|
473
|
+
CMakeFiles/ExperimentalMemCheck.dir/rule: cmake_check_build_system
|
474
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
475
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalMemCheck.dir/all
|
476
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
477
|
+
.PHONY : CMakeFiles/ExperimentalMemCheck.dir/rule
|
478
|
+
|
479
|
+
# Convenience name for target.
|
480
|
+
ExperimentalMemCheck: CMakeFiles/ExperimentalMemCheck.dir/rule
|
481
|
+
.PHONY : ExperimentalMemCheck
|
482
|
+
|
483
|
+
# clean rule for target.
|
484
|
+
CMakeFiles/ExperimentalMemCheck.dir/clean:
|
485
|
+
$(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/clean
|
486
|
+
.PHONY : CMakeFiles/ExperimentalMemCheck.dir/clean
|
487
|
+
|
488
|
+
# clean rule for target.
|
489
|
+
clean: CMakeFiles/ExperimentalMemCheck.dir/clean
|
490
|
+
.PHONY : clean
|
491
|
+
|
492
|
+
#=============================================================================
|
493
|
+
# Target rules for target CMakeFiles/ExperimentalStart.dir
|
494
|
+
|
495
|
+
# All Build rule for target.
|
496
|
+
CMakeFiles/ExperimentalStart.dir/all:
|
497
|
+
$(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/depend
|
498
|
+
$(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/build
|
499
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
500
|
+
@echo "Built target ExperimentalStart"
|
501
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/all
|
502
|
+
|
503
|
+
# Build rule for subdir invocation for target.
|
504
|
+
CMakeFiles/ExperimentalStart.dir/rule: cmake_check_build_system
|
505
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
506
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalStart.dir/all
|
507
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
508
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/rule
|
509
|
+
|
510
|
+
# Convenience name for target.
|
511
|
+
ExperimentalStart: CMakeFiles/ExperimentalStart.dir/rule
|
512
|
+
.PHONY : ExperimentalStart
|
513
|
+
|
514
|
+
# clean rule for target.
|
515
|
+
CMakeFiles/ExperimentalStart.dir/clean:
|
516
|
+
$(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/clean
|
517
|
+
.PHONY : CMakeFiles/ExperimentalStart.dir/clean
|
518
|
+
|
519
|
+
# clean rule for target.
|
520
|
+
clean: CMakeFiles/ExperimentalStart.dir/clean
|
521
|
+
.PHONY : clean
|
522
|
+
|
523
|
+
#=============================================================================
|
524
|
+
# Target rules for target CMakeFiles/ExperimentalSubmit.dir
|
525
|
+
|
526
|
+
# All Build rule for target.
|
527
|
+
CMakeFiles/ExperimentalSubmit.dir/all:
|
528
|
+
$(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/depend
|
529
|
+
$(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/build
|
530
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
531
|
+
@echo "Built target ExperimentalSubmit"
|
532
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/all
|
533
|
+
|
534
|
+
# Build rule for subdir invocation for target.
|
535
|
+
CMakeFiles/ExperimentalSubmit.dir/rule: cmake_check_build_system
|
536
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
537
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalSubmit.dir/all
|
538
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
539
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/rule
|
540
|
+
|
541
|
+
# Convenience name for target.
|
542
|
+
ExperimentalSubmit: CMakeFiles/ExperimentalSubmit.dir/rule
|
543
|
+
.PHONY : ExperimentalSubmit
|
544
|
+
|
545
|
+
# clean rule for target.
|
546
|
+
CMakeFiles/ExperimentalSubmit.dir/clean:
|
547
|
+
$(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/clean
|
548
|
+
.PHONY : CMakeFiles/ExperimentalSubmit.dir/clean
|
549
|
+
|
550
|
+
# clean rule for target.
|
551
|
+
clean: CMakeFiles/ExperimentalSubmit.dir/clean
|
552
|
+
.PHONY : clean
|
553
|
+
|
554
|
+
#=============================================================================
|
555
|
+
# Target rules for target CMakeFiles/ExperimentalTest.dir
|
556
|
+
|
557
|
+
# All Build rule for target.
|
558
|
+
CMakeFiles/ExperimentalTest.dir/all:
|
559
|
+
$(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/depend
|
560
|
+
$(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/build
|
561
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
562
|
+
@echo "Built target ExperimentalTest"
|
563
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/all
|
564
|
+
|
565
|
+
# Build rule for subdir invocation for target.
|
566
|
+
CMakeFiles/ExperimentalTest.dir/rule: cmake_check_build_system
|
567
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
568
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalTest.dir/all
|
569
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
570
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/rule
|
571
|
+
|
572
|
+
# Convenience name for target.
|
573
|
+
ExperimentalTest: CMakeFiles/ExperimentalTest.dir/rule
|
574
|
+
.PHONY : ExperimentalTest
|
575
|
+
|
576
|
+
# clean rule for target.
|
577
|
+
CMakeFiles/ExperimentalTest.dir/clean:
|
578
|
+
$(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/clean
|
579
|
+
.PHONY : CMakeFiles/ExperimentalTest.dir/clean
|
580
|
+
|
581
|
+
# clean rule for target.
|
582
|
+
clean: CMakeFiles/ExperimentalTest.dir/clean
|
583
|
+
.PHONY : clean
|
584
|
+
|
585
|
+
#=============================================================================
|
586
|
+
# Target rules for target CMakeFiles/ExperimentalUpdate.dir
|
587
|
+
|
588
|
+
# All Build rule for target.
|
589
|
+
CMakeFiles/ExperimentalUpdate.dir/all:
|
590
|
+
$(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/depend
|
591
|
+
$(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/build
|
592
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
593
|
+
@echo "Built target ExperimentalUpdate"
|
594
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/all
|
595
|
+
|
596
|
+
# Build rule for subdir invocation for target.
|
597
|
+
CMakeFiles/ExperimentalUpdate.dir/rule: cmake_check_build_system
|
598
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
599
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalUpdate.dir/all
|
600
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
601
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/rule
|
602
|
+
|
603
|
+
# Convenience name for target.
|
604
|
+
ExperimentalUpdate: CMakeFiles/ExperimentalUpdate.dir/rule
|
605
|
+
.PHONY : ExperimentalUpdate
|
606
|
+
|
607
|
+
# clean rule for target.
|
608
|
+
CMakeFiles/ExperimentalUpdate.dir/clean:
|
609
|
+
$(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/clean
|
610
|
+
.PHONY : CMakeFiles/ExperimentalUpdate.dir/clean
|
611
|
+
|
612
|
+
# clean rule for target.
|
613
|
+
clean: CMakeFiles/ExperimentalUpdate.dir/clean
|
614
|
+
.PHONY : clean
|
615
|
+
|
616
|
+
#=============================================================================
|
617
|
+
# Target rules for target CMakeFiles/Nightly.dir
|
618
|
+
|
619
|
+
# All Build rule for target.
|
620
|
+
CMakeFiles/Nightly.dir/all:
|
621
|
+
$(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/depend
|
622
|
+
$(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/build
|
623
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
624
|
+
@echo "Built target Nightly"
|
625
|
+
.PHONY : CMakeFiles/Nightly.dir/all
|
626
|
+
|
627
|
+
# Build rule for subdir invocation for target.
|
628
|
+
CMakeFiles/Nightly.dir/rule: cmake_check_build_system
|
629
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
630
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Nightly.dir/all
|
631
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
632
|
+
.PHONY : CMakeFiles/Nightly.dir/rule
|
633
|
+
|
634
|
+
# Convenience name for target.
|
635
|
+
Nightly: CMakeFiles/Nightly.dir/rule
|
636
|
+
.PHONY : Nightly
|
637
|
+
|
638
|
+
# clean rule for target.
|
639
|
+
CMakeFiles/Nightly.dir/clean:
|
640
|
+
$(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/clean
|
641
|
+
.PHONY : CMakeFiles/Nightly.dir/clean
|
642
|
+
|
643
|
+
# clean rule for target.
|
644
|
+
clean: CMakeFiles/Nightly.dir/clean
|
645
|
+
.PHONY : clean
|
646
|
+
|
647
|
+
#=============================================================================
|
648
|
+
# Target rules for target CMakeFiles/NightlyBuild.dir
|
649
|
+
|
650
|
+
# All Build rule for target.
|
651
|
+
CMakeFiles/NightlyBuild.dir/all:
|
652
|
+
$(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/depend
|
653
|
+
$(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/build
|
654
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
655
|
+
@echo "Built target NightlyBuild"
|
656
|
+
.PHONY : CMakeFiles/NightlyBuild.dir/all
|
657
|
+
|
658
|
+
# Build rule for subdir invocation for target.
|
659
|
+
CMakeFiles/NightlyBuild.dir/rule: cmake_check_build_system
|
660
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
661
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyBuild.dir/all
|
662
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
663
|
+
.PHONY : CMakeFiles/NightlyBuild.dir/rule
|
664
|
+
|
665
|
+
# Convenience name for target.
|
666
|
+
NightlyBuild: CMakeFiles/NightlyBuild.dir/rule
|
667
|
+
.PHONY : NightlyBuild
|
668
|
+
|
669
|
+
# clean rule for target.
|
670
|
+
CMakeFiles/NightlyBuild.dir/clean:
|
671
|
+
$(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/clean
|
672
|
+
.PHONY : CMakeFiles/NightlyBuild.dir/clean
|
673
|
+
|
674
|
+
# clean rule for target.
|
675
|
+
clean: CMakeFiles/NightlyBuild.dir/clean
|
676
|
+
.PHONY : clean
|
677
|
+
|
678
|
+
#=============================================================================
|
679
|
+
# Target rules for target CMakeFiles/NightlyConfigure.dir
|
680
|
+
|
681
|
+
# All Build rule for target.
|
682
|
+
CMakeFiles/NightlyConfigure.dir/all:
|
683
|
+
$(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/depend
|
684
|
+
$(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/build
|
685
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
686
|
+
@echo "Built target NightlyConfigure"
|
687
|
+
.PHONY : CMakeFiles/NightlyConfigure.dir/all
|
688
|
+
|
689
|
+
# Build rule for subdir invocation for target.
|
690
|
+
CMakeFiles/NightlyConfigure.dir/rule: cmake_check_build_system
|
691
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
692
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyConfigure.dir/all
|
693
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
694
|
+
.PHONY : CMakeFiles/NightlyConfigure.dir/rule
|
695
|
+
|
696
|
+
# Convenience name for target.
|
697
|
+
NightlyConfigure: CMakeFiles/NightlyConfigure.dir/rule
|
698
|
+
.PHONY : NightlyConfigure
|
699
|
+
|
700
|
+
# clean rule for target.
|
701
|
+
CMakeFiles/NightlyConfigure.dir/clean:
|
702
|
+
$(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/clean
|
703
|
+
.PHONY : CMakeFiles/NightlyConfigure.dir/clean
|
704
|
+
|
705
|
+
# clean rule for target.
|
706
|
+
clean: CMakeFiles/NightlyConfigure.dir/clean
|
707
|
+
.PHONY : clean
|
708
|
+
|
709
|
+
#=============================================================================
|
710
|
+
# Target rules for target CMakeFiles/NightlyCoverage.dir
|
711
|
+
|
712
|
+
# All Build rule for target.
|
713
|
+
CMakeFiles/NightlyCoverage.dir/all:
|
714
|
+
$(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/depend
|
715
|
+
$(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/build
|
716
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
717
|
+
@echo "Built target NightlyCoverage"
|
718
|
+
.PHONY : CMakeFiles/NightlyCoverage.dir/all
|
719
|
+
|
720
|
+
# Build rule for subdir invocation for target.
|
721
|
+
CMakeFiles/NightlyCoverage.dir/rule: cmake_check_build_system
|
722
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
723
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyCoverage.dir/all
|
724
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
725
|
+
.PHONY : CMakeFiles/NightlyCoverage.dir/rule
|
726
|
+
|
727
|
+
# Convenience name for target.
|
728
|
+
NightlyCoverage: CMakeFiles/NightlyCoverage.dir/rule
|
729
|
+
.PHONY : NightlyCoverage
|
730
|
+
|
731
|
+
# clean rule for target.
|
732
|
+
CMakeFiles/NightlyCoverage.dir/clean:
|
733
|
+
$(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/clean
|
734
|
+
.PHONY : CMakeFiles/NightlyCoverage.dir/clean
|
735
|
+
|
736
|
+
# clean rule for target.
|
737
|
+
clean: CMakeFiles/NightlyCoverage.dir/clean
|
738
|
+
.PHONY : clean
|
739
|
+
|
740
|
+
#=============================================================================
|
741
|
+
# Target rules for target CMakeFiles/NightlyMemCheck.dir
|
742
|
+
|
743
|
+
# All Build rule for target.
|
744
|
+
CMakeFiles/NightlyMemCheck.dir/all:
|
745
|
+
$(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/depend
|
746
|
+
$(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/build
|
747
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
748
|
+
@echo "Built target NightlyMemCheck"
|
749
|
+
.PHONY : CMakeFiles/NightlyMemCheck.dir/all
|
750
|
+
|
751
|
+
# Build rule for subdir invocation for target.
|
752
|
+
CMakeFiles/NightlyMemCheck.dir/rule: cmake_check_build_system
|
753
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
754
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyMemCheck.dir/all
|
755
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
756
|
+
.PHONY : CMakeFiles/NightlyMemCheck.dir/rule
|
757
|
+
|
758
|
+
# Convenience name for target.
|
759
|
+
NightlyMemCheck: CMakeFiles/NightlyMemCheck.dir/rule
|
760
|
+
.PHONY : NightlyMemCheck
|
761
|
+
|
762
|
+
# clean rule for target.
|
763
|
+
CMakeFiles/NightlyMemCheck.dir/clean:
|
764
|
+
$(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/clean
|
765
|
+
.PHONY : CMakeFiles/NightlyMemCheck.dir/clean
|
766
|
+
|
767
|
+
# clean rule for target.
|
768
|
+
clean: CMakeFiles/NightlyMemCheck.dir/clean
|
769
|
+
.PHONY : clean
|
770
|
+
|
771
|
+
#=============================================================================
|
772
|
+
# Target rules for target CMakeFiles/NightlyMemoryCheck.dir
|
773
|
+
|
774
|
+
# All Build rule for target.
|
775
|
+
CMakeFiles/NightlyMemoryCheck.dir/all:
|
776
|
+
$(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/depend
|
777
|
+
$(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/build
|
778
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
779
|
+
@echo "Built target NightlyMemoryCheck"
|
780
|
+
.PHONY : CMakeFiles/NightlyMemoryCheck.dir/all
|
781
|
+
|
782
|
+
# Build rule for subdir invocation for target.
|
783
|
+
CMakeFiles/NightlyMemoryCheck.dir/rule: cmake_check_build_system
|
784
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
785
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyMemoryCheck.dir/all
|
786
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
787
|
+
.PHONY : CMakeFiles/NightlyMemoryCheck.dir/rule
|
788
|
+
|
789
|
+
# Convenience name for target.
|
790
|
+
NightlyMemoryCheck: CMakeFiles/NightlyMemoryCheck.dir/rule
|
791
|
+
.PHONY : NightlyMemoryCheck
|
792
|
+
|
793
|
+
# clean rule for target.
|
794
|
+
CMakeFiles/NightlyMemoryCheck.dir/clean:
|
795
|
+
$(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/clean
|
796
|
+
.PHONY : CMakeFiles/NightlyMemoryCheck.dir/clean
|
797
|
+
|
798
|
+
# clean rule for target.
|
799
|
+
clean: CMakeFiles/NightlyMemoryCheck.dir/clean
|
800
|
+
.PHONY : clean
|
801
|
+
|
802
|
+
#=============================================================================
|
803
|
+
# Target rules for target CMakeFiles/NightlyStart.dir
|
804
|
+
|
805
|
+
# All Build rule for target.
|
806
|
+
CMakeFiles/NightlyStart.dir/all:
|
807
|
+
$(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/depend
|
808
|
+
$(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/build
|
809
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
810
|
+
@echo "Built target NightlyStart"
|
811
|
+
.PHONY : CMakeFiles/NightlyStart.dir/all
|
812
|
+
|
813
|
+
# Build rule for subdir invocation for target.
|
814
|
+
CMakeFiles/NightlyStart.dir/rule: cmake_check_build_system
|
815
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
816
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyStart.dir/all
|
817
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
818
|
+
.PHONY : CMakeFiles/NightlyStart.dir/rule
|
819
|
+
|
820
|
+
# Convenience name for target.
|
821
|
+
NightlyStart: CMakeFiles/NightlyStart.dir/rule
|
822
|
+
.PHONY : NightlyStart
|
823
|
+
|
824
|
+
# clean rule for target.
|
825
|
+
CMakeFiles/NightlyStart.dir/clean:
|
826
|
+
$(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/clean
|
827
|
+
.PHONY : CMakeFiles/NightlyStart.dir/clean
|
828
|
+
|
829
|
+
# clean rule for target.
|
830
|
+
clean: CMakeFiles/NightlyStart.dir/clean
|
831
|
+
.PHONY : clean
|
832
|
+
|
833
|
+
#=============================================================================
|
834
|
+
# Target rules for target CMakeFiles/NightlySubmit.dir
|
835
|
+
|
836
|
+
# All Build rule for target.
|
837
|
+
CMakeFiles/NightlySubmit.dir/all:
|
838
|
+
$(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/depend
|
839
|
+
$(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/build
|
840
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
841
|
+
@echo "Built target NightlySubmit"
|
842
|
+
.PHONY : CMakeFiles/NightlySubmit.dir/all
|
843
|
+
|
844
|
+
# Build rule for subdir invocation for target.
|
845
|
+
CMakeFiles/NightlySubmit.dir/rule: cmake_check_build_system
|
846
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
847
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlySubmit.dir/all
|
848
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
849
|
+
.PHONY : CMakeFiles/NightlySubmit.dir/rule
|
850
|
+
|
851
|
+
# Convenience name for target.
|
852
|
+
NightlySubmit: CMakeFiles/NightlySubmit.dir/rule
|
853
|
+
.PHONY : NightlySubmit
|
854
|
+
|
855
|
+
# clean rule for target.
|
856
|
+
CMakeFiles/NightlySubmit.dir/clean:
|
857
|
+
$(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/clean
|
858
|
+
.PHONY : CMakeFiles/NightlySubmit.dir/clean
|
859
|
+
|
860
|
+
# clean rule for target.
|
861
|
+
clean: CMakeFiles/NightlySubmit.dir/clean
|
862
|
+
.PHONY : clean
|
863
|
+
|
864
|
+
#=============================================================================
|
865
|
+
# Target rules for target CMakeFiles/NightlyTest.dir
|
866
|
+
|
867
|
+
# All Build rule for target.
|
868
|
+
CMakeFiles/NightlyTest.dir/all:
|
869
|
+
$(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/depend
|
870
|
+
$(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/build
|
871
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
872
|
+
@echo "Built target NightlyTest"
|
873
|
+
.PHONY : CMakeFiles/NightlyTest.dir/all
|
874
|
+
|
875
|
+
# Build rule for subdir invocation for target.
|
876
|
+
CMakeFiles/NightlyTest.dir/rule: cmake_check_build_system
|
877
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
878
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyTest.dir/all
|
879
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
880
|
+
.PHONY : CMakeFiles/NightlyTest.dir/rule
|
881
|
+
|
882
|
+
# Convenience name for target.
|
883
|
+
NightlyTest: CMakeFiles/NightlyTest.dir/rule
|
884
|
+
.PHONY : NightlyTest
|
885
|
+
|
886
|
+
# clean rule for target.
|
887
|
+
CMakeFiles/NightlyTest.dir/clean:
|
888
|
+
$(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/clean
|
889
|
+
.PHONY : CMakeFiles/NightlyTest.dir/clean
|
890
|
+
|
891
|
+
# clean rule for target.
|
892
|
+
clean: CMakeFiles/NightlyTest.dir/clean
|
893
|
+
.PHONY : clean
|
894
|
+
|
895
|
+
#=============================================================================
|
896
|
+
# Target rules for target CMakeFiles/NightlyUpdate.dir
|
897
|
+
|
898
|
+
# All Build rule for target.
|
899
|
+
CMakeFiles/NightlyUpdate.dir/all:
|
900
|
+
$(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/depend
|
901
|
+
$(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/build
|
902
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
903
|
+
@echo "Built target NightlyUpdate"
|
904
|
+
.PHONY : CMakeFiles/NightlyUpdate.dir/all
|
905
|
+
|
906
|
+
# Build rule for subdir invocation for target.
|
907
|
+
CMakeFiles/NightlyUpdate.dir/rule: cmake_check_build_system
|
908
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
909
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyUpdate.dir/all
|
910
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
911
|
+
.PHONY : CMakeFiles/NightlyUpdate.dir/rule
|
912
|
+
|
913
|
+
# Convenience name for target.
|
914
|
+
NightlyUpdate: CMakeFiles/NightlyUpdate.dir/rule
|
915
|
+
.PHONY : NightlyUpdate
|
916
|
+
|
917
|
+
# clean rule for target.
|
918
|
+
CMakeFiles/NightlyUpdate.dir/clean:
|
919
|
+
$(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/clean
|
920
|
+
.PHONY : CMakeFiles/NightlyUpdate.dir/clean
|
921
|
+
|
922
|
+
# clean rule for target.
|
923
|
+
clean: CMakeFiles/NightlyUpdate.dir/clean
|
924
|
+
.PHONY : clean
|
925
|
+
|
926
|
+
#=============================================================================
|
927
|
+
# Target rules for target CMakeFiles/format.dir
|
928
|
+
|
929
|
+
# All Build rule for target.
|
930
|
+
CMakeFiles/format.dir/all:
|
931
|
+
$(MAKE) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/depend
|
932
|
+
$(MAKE) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/build
|
933
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
934
|
+
@echo "Built target format"
|
935
|
+
.PHONY : CMakeFiles/format.dir/all
|
936
|
+
|
937
|
+
# Build rule for subdir invocation for target.
|
938
|
+
CMakeFiles/format.dir/rule: cmake_check_build_system
|
939
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
940
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/format.dir/all
|
941
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
942
|
+
.PHONY : CMakeFiles/format.dir/rule
|
943
|
+
|
944
|
+
# Convenience name for target.
|
945
|
+
format: CMakeFiles/format.dir/rule
|
946
|
+
.PHONY : format
|
947
|
+
|
948
|
+
# clean rule for target.
|
949
|
+
CMakeFiles/format.dir/clean:
|
950
|
+
$(MAKE) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/clean
|
951
|
+
.PHONY : CMakeFiles/format.dir/clean
|
952
|
+
|
953
|
+
# clean rule for target.
|
954
|
+
clean: CMakeFiles/format.dir/clean
|
955
|
+
.PHONY : clean
|
956
|
+
|
957
|
+
#=============================================================================
|
958
|
+
# Target rules for target CMakeFiles/libmtex2MML.dir
|
959
|
+
|
960
|
+
# All Build rule for target.
|
961
|
+
CMakeFiles/libmtex2MML.dir/all:
|
962
|
+
$(MAKE) -f CMakeFiles/libmtex2MML.dir/build.make CMakeFiles/libmtex2MML.dir/depend
|
963
|
+
$(MAKE) -f CMakeFiles/libmtex2MML.dir/build.make CMakeFiles/libmtex2MML.dir/build
|
964
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 1 2 3 4 5 6 7 8
|
965
|
+
@echo "Built target libmtex2MML"
|
966
|
+
.PHONY : CMakeFiles/libmtex2MML.dir/all
|
967
|
+
|
968
|
+
# Include target in all.
|
969
|
+
all: CMakeFiles/libmtex2MML.dir/all
|
970
|
+
.PHONY : all
|
971
|
+
|
972
|
+
# Build rule for subdir invocation for target.
|
973
|
+
CMakeFiles/libmtex2MML.dir/rule: cmake_check_build_system
|
974
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 8
|
975
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/libmtex2MML.dir/all
|
976
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
977
|
+
.PHONY : CMakeFiles/libmtex2MML.dir/rule
|
978
|
+
|
979
|
+
# Convenience name for target.
|
980
|
+
libmtex2MML: CMakeFiles/libmtex2MML.dir/rule
|
981
|
+
.PHONY : libmtex2MML
|
982
|
+
|
983
|
+
# clean rule for target.
|
984
|
+
CMakeFiles/libmtex2MML.dir/clean:
|
985
|
+
$(MAKE) -f CMakeFiles/libmtex2MML.dir/build.make CMakeFiles/libmtex2MML.dir/clean
|
986
|
+
.PHONY : CMakeFiles/libmtex2MML.dir/clean
|
987
|
+
|
988
|
+
# clean rule for target.
|
989
|
+
clean: CMakeFiles/libmtex2MML.dir/clean
|
990
|
+
.PHONY : clean
|
991
|
+
|
992
|
+
#=============================================================================
|
993
|
+
# Target rules for target CMakeFiles/libmtex2MML_static.dir
|
994
|
+
|
995
|
+
# All Build rule for target.
|
996
|
+
CMakeFiles/libmtex2MML_static.dir/all:
|
997
|
+
$(MAKE) -f CMakeFiles/libmtex2MML_static.dir/build.make CMakeFiles/libmtex2MML_static.dir/depend
|
998
|
+
$(MAKE) -f CMakeFiles/libmtex2MML_static.dir/build.make CMakeFiles/libmtex2MML_static.dir/build
|
999
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 9 10 11 12 13 14 15 16
|
1000
|
+
@echo "Built target libmtex2MML_static"
|
1001
|
+
.PHONY : CMakeFiles/libmtex2MML_static.dir/all
|
1002
|
+
|
1003
|
+
# Include target in all.
|
1004
|
+
all: CMakeFiles/libmtex2MML_static.dir/all
|
1005
|
+
.PHONY : all
|
1006
|
+
|
1007
|
+
# Build rule for subdir invocation for target.
|
1008
|
+
CMakeFiles/libmtex2MML_static.dir/rule: cmake_check_build_system
|
1009
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 8
|
1010
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/libmtex2MML_static.dir/all
|
1011
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
1012
|
+
.PHONY : CMakeFiles/libmtex2MML_static.dir/rule
|
1013
|
+
|
1014
|
+
# Convenience name for target.
|
1015
|
+
libmtex2MML_static: CMakeFiles/libmtex2MML_static.dir/rule
|
1016
|
+
.PHONY : libmtex2MML_static
|
1017
|
+
|
1018
|
+
# clean rule for target.
|
1019
|
+
CMakeFiles/libmtex2MML_static.dir/clean:
|
1020
|
+
$(MAKE) -f CMakeFiles/libmtex2MML_static.dir/build.make CMakeFiles/libmtex2MML_static.dir/clean
|
1021
|
+
.PHONY : CMakeFiles/libmtex2MML_static.dir/clean
|
1022
|
+
|
1023
|
+
# clean rule for target.
|
1024
|
+
clean: CMakeFiles/libmtex2MML_static.dir/clean
|
1025
|
+
.PHONY : clean
|
1026
|
+
|
1027
|
+
#=============================================================================
|
1028
|
+
# Target rules for target CMakeFiles/memcheck.dir
|
1029
|
+
|
1030
|
+
# All Build rule for target.
|
1031
|
+
CMakeFiles/memcheck.dir/all:
|
1032
|
+
$(MAKE) -f CMakeFiles/memcheck.dir/build.make CMakeFiles/memcheck.dir/depend
|
1033
|
+
$(MAKE) -f CMakeFiles/memcheck.dir/build.make CMakeFiles/memcheck.dir/build
|
1034
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles
|
1035
|
+
@echo "Built target memcheck"
|
1036
|
+
.PHONY : CMakeFiles/memcheck.dir/all
|
1037
|
+
|
1038
|
+
# Build rule for subdir invocation for target.
|
1039
|
+
CMakeFiles/memcheck.dir/rule: cmake_check_build_system
|
1040
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
1041
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/memcheck.dir/all
|
1042
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
1043
|
+
.PHONY : CMakeFiles/memcheck.dir/rule
|
1044
|
+
|
1045
|
+
# Convenience name for target.
|
1046
|
+
memcheck: CMakeFiles/memcheck.dir/rule
|
1047
|
+
.PHONY : memcheck
|
1048
|
+
|
1049
|
+
# clean rule for target.
|
1050
|
+
CMakeFiles/memcheck.dir/clean:
|
1051
|
+
$(MAKE) -f CMakeFiles/memcheck.dir/build.make CMakeFiles/memcheck.dir/clean
|
1052
|
+
.PHONY : CMakeFiles/memcheck.dir/clean
|
1053
|
+
|
1054
|
+
# clean rule for target.
|
1055
|
+
clean: CMakeFiles/memcheck.dir/clean
|
1056
|
+
.PHONY : clean
|
1057
|
+
|
1058
|
+
#=============================================================================
|
1059
|
+
# Target rules for target CMakeFiles/mtex2MML.dir
|
1060
|
+
|
1061
|
+
# All Build rule for target.
|
1062
|
+
CMakeFiles/mtex2MML.dir/all:
|
1063
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/depend
|
1064
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/build
|
1065
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 17 18 19 20 21 22 23 24 25
|
1066
|
+
@echo "Built target mtex2MML"
|
1067
|
+
.PHONY : CMakeFiles/mtex2MML.dir/all
|
1068
|
+
|
1069
|
+
# Include target in all.
|
1070
|
+
all: CMakeFiles/mtex2MML.dir/all
|
1071
|
+
.PHONY : all
|
1072
|
+
|
1073
|
+
# Build rule for subdir invocation for target.
|
1074
|
+
CMakeFiles/mtex2MML.dir/rule: cmake_check_build_system
|
1075
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 9
|
1076
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/mtex2MML.dir/all
|
1077
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
1078
|
+
.PHONY : CMakeFiles/mtex2MML.dir/rule
|
1079
|
+
|
1080
|
+
# Convenience name for target.
|
1081
|
+
mtex2MML: CMakeFiles/mtex2MML.dir/rule
|
1082
|
+
.PHONY : mtex2MML
|
1083
|
+
|
1084
|
+
# clean rule for target.
|
1085
|
+
CMakeFiles/mtex2MML.dir/clean:
|
1086
|
+
$(MAKE) -f CMakeFiles/mtex2MML.dir/build.make CMakeFiles/mtex2MML.dir/clean
|
1087
|
+
.PHONY : CMakeFiles/mtex2MML.dir/clean
|
1088
|
+
|
1089
|
+
# clean rule for target.
|
1090
|
+
clean: CMakeFiles/mtex2MML.dir/clean
|
1091
|
+
.PHONY : clean
|
1092
|
+
|
1093
|
+
#=============================================================================
|
1094
|
+
# Target rules for target CMakeFiles/mtex2MML_clar.dir
|
1095
|
+
|
1096
|
+
# All Build rule for target.
|
1097
|
+
CMakeFiles/mtex2MML_clar.dir/all:
|
1098
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/depend
|
1099
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/build
|
1100
|
+
$(CMAKE_COMMAND) -E cmake_progress_report /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
1101
|
+
@echo "Built target mtex2MML_clar"
|
1102
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/all
|
1103
|
+
|
1104
|
+
# Include target in all.
|
1105
|
+
all: CMakeFiles/mtex2MML_clar.dir/all
|
1106
|
+
.PHONY : all
|
1107
|
+
|
1108
|
+
# Build rule for subdir invocation for target.
|
1109
|
+
CMakeFiles/mtex2MML_clar.dir/rule: cmake_check_build_system
|
1110
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 25
|
1111
|
+
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/mtex2MML_clar.dir/all
|
1112
|
+
$(CMAKE_COMMAND) -E cmake_progress_start /Users/gjtorikian/Development/mathematical/ext/mathematical/mtex2MML/build/CMakeFiles 0
|
1113
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/rule
|
1114
|
+
|
1115
|
+
# Convenience name for target.
|
1116
|
+
mtex2MML_clar: CMakeFiles/mtex2MML_clar.dir/rule
|
1117
|
+
.PHONY : mtex2MML_clar
|
1118
|
+
|
1119
|
+
# clean rule for target.
|
1120
|
+
CMakeFiles/mtex2MML_clar.dir/clean:
|
1121
|
+
$(MAKE) -f CMakeFiles/mtex2MML_clar.dir/build.make CMakeFiles/mtex2MML_clar.dir/clean
|
1122
|
+
.PHONY : CMakeFiles/mtex2MML_clar.dir/clean
|
1123
|
+
|
1124
|
+
# clean rule for target.
|
1125
|
+
clean: CMakeFiles/mtex2MML_clar.dir/clean
|
1126
|
+
.PHONY : clean
|
1127
|
+
|
1128
|
+
#=============================================================================
|
1129
|
+
# Special targets to cleanup operation of make.
|
1130
|
+
|
1131
|
+
# Special rule to run CMake to check the build system integrity.
|
1132
|
+
# No rule that depends on this can have commands that come from listfiles
|
1133
|
+
# because they might be regenerated.
|
1134
|
+
cmake_check_build_system:
|
1135
|
+
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
1136
|
+
.PHONY : cmake_check_build_system
|
1137
|
+
|