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
@@ -1,1343 +0,0 @@
|
|
1
|
-
# Makefile.in generated by automake 1.15 from Makefile.am.
|
2
|
-
# src/Makefile. Generated from Makefile.in by configure.
|
3
|
-
|
4
|
-
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
5
|
-
|
6
|
-
# This Makefile.in is free software; the Free Software Foundation
|
7
|
-
# gives unlimited permission to copy and/or distribute it,
|
8
|
-
# with or without modifications, as long as this notice is preserved.
|
9
|
-
|
10
|
-
# This program is distributed in the hope that it will be useful,
|
11
|
-
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
-
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
-
# PARTICULAR PURPOSE.
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
# GLIB - Library of useful C routines
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
am__is_gnu_make = { \
|
24
|
-
if test -z '$(MAKELEVEL)'; then \
|
25
|
-
false; \
|
26
|
-
elif test -n '$(MAKE_HOST)'; then \
|
27
|
-
true; \
|
28
|
-
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
29
|
-
true; \
|
30
|
-
else \
|
31
|
-
false; \
|
32
|
-
fi; \
|
33
|
-
}
|
34
|
-
am__make_running_with_option = \
|
35
|
-
case $${target_option-} in \
|
36
|
-
?) ;; \
|
37
|
-
*) echo "am__make_running_with_option: internal error: invalid" \
|
38
|
-
"target option '$${target_option-}' specified" >&2; \
|
39
|
-
exit 1;; \
|
40
|
-
esac; \
|
41
|
-
has_opt=no; \
|
42
|
-
sane_makeflags=$$MAKEFLAGS; \
|
43
|
-
if $(am__is_gnu_make); then \
|
44
|
-
sane_makeflags=$$MFLAGS; \
|
45
|
-
else \
|
46
|
-
case $$MAKEFLAGS in \
|
47
|
-
*\\[\ \ ]*) \
|
48
|
-
bs=\\; \
|
49
|
-
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
50
|
-
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
51
|
-
esac; \
|
52
|
-
fi; \
|
53
|
-
skip_next=no; \
|
54
|
-
strip_trailopt () \
|
55
|
-
{ \
|
56
|
-
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
57
|
-
}; \
|
58
|
-
for flg in $$sane_makeflags; do \
|
59
|
-
test $$skip_next = yes && { skip_next=no; continue; }; \
|
60
|
-
case $$flg in \
|
61
|
-
*=*|--*) continue;; \
|
62
|
-
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
63
|
-
-*I?*) strip_trailopt 'I';; \
|
64
|
-
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
65
|
-
-*O?*) strip_trailopt 'O';; \
|
66
|
-
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
67
|
-
-*l?*) strip_trailopt 'l';; \
|
68
|
-
-[dEDm]) skip_next=yes;; \
|
69
|
-
-[JT]) skip_next=yes;; \
|
70
|
-
esac; \
|
71
|
-
case $$flg in \
|
72
|
-
*$$target_option*) has_opt=yes; break;; \
|
73
|
-
esac; \
|
74
|
-
done; \
|
75
|
-
test $$has_opt = yes
|
76
|
-
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
77
|
-
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
78
|
-
pkgdatadir = $(datadir)/lasem
|
79
|
-
pkgincludedir = $(includedir)/lasem
|
80
|
-
pkglibdir = $(libdir)/lasem
|
81
|
-
pkglibexecdir = $(libexecdir)/lasem
|
82
|
-
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
83
|
-
install_sh_DATA = $(install_sh) -c -m 644
|
84
|
-
install_sh_PROGRAM = $(install_sh) -c
|
85
|
-
install_sh_SCRIPT = $(install_sh) -c
|
86
|
-
INSTALL_HEADER = $(INSTALL_DATA)
|
87
|
-
transform = $(program_transform_name)
|
88
|
-
NORMAL_INSTALL = :
|
89
|
-
PRE_INSTALL = :
|
90
|
-
POST_INSTALL = :
|
91
|
-
NORMAL_UNINSTALL = :
|
92
|
-
PRE_UNINSTALL = :
|
93
|
-
POST_UNINSTALL = :
|
94
|
-
build_triplet = x86_64-apple-darwin14.5.0
|
95
|
-
host_triplet = x86_64-apple-darwin14.5.0
|
96
|
-
bin_PROGRAMS = lasem-render-0.6$(EXEEXT)
|
97
|
-
#am__append_1 = Lasem-0.6.gir
|
98
|
-
#am__append_2 = $(gir_DATA) $(typelib_DATA)
|
99
|
-
subdir = src
|
100
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
101
|
-
am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
|
102
|
-
$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/introspection.m4 \
|
103
|
-
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
104
|
-
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
105
|
-
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
106
|
-
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
107
|
-
$(ACLOCAL_M4)
|
108
|
-
DIST_COMMON = $(srcdir)/Makefile.am \
|
109
|
-
$(liblasem_0.6_la_HEADERS) $(am__DIST_COMMON)
|
110
|
-
mkinstalldirs = $(install_sh) -d
|
111
|
-
CONFIG_HEADER = $(top_builddir)/config.h
|
112
|
-
CONFIG_CLEAN_FILES =
|
113
|
-
CONFIG_CLEAN_VPATH_FILES =
|
114
|
-
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
115
|
-
am__vpath_adj = case $$p in \
|
116
|
-
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
117
|
-
*) f=$$p;; \
|
118
|
-
esac;
|
119
|
-
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
120
|
-
am__install_max = 40
|
121
|
-
am__nobase_strip_setup = \
|
122
|
-
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
123
|
-
am__nobase_strip = \
|
124
|
-
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
125
|
-
am__nobase_list = $(am__nobase_strip_setup); \
|
126
|
-
for p in $$list; do echo "$$p $$p"; done | \
|
127
|
-
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
128
|
-
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
129
|
-
if (++n[$$2] == $(am__install_max)) \
|
130
|
-
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
131
|
-
END { for (dir in files) print dir, files[dir] }'
|
132
|
-
am__base_list = \
|
133
|
-
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
134
|
-
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
135
|
-
am__uninstall_files_from_dir = { \
|
136
|
-
test -z "$$files" \
|
137
|
-
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
138
|
-
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
139
|
-
$(am__cd) "$$dir" && rm -f $$files; }; \
|
140
|
-
}
|
141
|
-
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
|
142
|
-
"$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)" \
|
143
|
-
"$(DESTDIR)$(liblasem_0.6_ladir)"
|
144
|
-
LTLIBRARIES = $(lib_LTLIBRARIES)
|
145
|
-
am__DEPENDENCIES_1 =
|
146
|
-
liblasem_0.6_la_DEPENDENCIES = \
|
147
|
-
../itex2mml/libitex2mml.la $(am__DEPENDENCIES_1)
|
148
|
-
am__objects_1 = lsm.lo lsmdebug.lo lsmstr.lo lsmutils.lo lsmtraits.lo \
|
149
|
-
lsmproperties.lo lsmattributes.lo lsmcairo.lo lsmitex.lo \
|
150
|
-
lsmdomentities.lo lsmdomnode.lo lsmdomnodelist.lo \
|
151
|
-
lsmdomnamednodemap.lo lsmdomdocument.lo \
|
152
|
-
lsmdomdocumentfragment.lo lsmdomelement.lo \
|
153
|
-
lsmdomcharacterdata.lo lsmdomtext.lo lsmdomview.lo \
|
154
|
-
lsmdomparser.lo lsmdomimplementation.lo
|
155
|
-
am__objects_2 = lsmdomenumtypes.lo
|
156
|
-
am__objects_3 = lsmmathmlenumtypes.lo lsmmathmlenums.lo \
|
157
|
-
lsmmathmltraits.lo lsmmathmlattributes.lo \
|
158
|
-
lsmmathmloperatordictionary.lo lsmmathmldocument.lo \
|
159
|
-
lsmmathmlelement.lo lsmmathmlsemanticselement.lo \
|
160
|
-
lsmmathmlphantomelement.lo lsmmathmlmathelement.lo \
|
161
|
-
lsmmathmltableelement.lo lsmmathmltablerowelement.lo \
|
162
|
-
lsmmathmltablecellelement.lo lsmmathmlspaceelement.lo \
|
163
|
-
lsmmathmlradicalelement.lo lsmmathmlscriptelement.lo \
|
164
|
-
lsmmathmlfractionelement.lo lsmmathmlunderoverelement.lo \
|
165
|
-
lsmmathmlpresentationtoken.lo lsmmathmloperatorelement.lo \
|
166
|
-
lsmmathmlstringelement.lo lsmmathmlpresentationcontainer.lo \
|
167
|
-
lsmmathmlstyleelement.lo lsmmathmlrowelement.lo \
|
168
|
-
lsmmathmlencloseelement.lo lsmmathmlfencedelement.lo \
|
169
|
-
lsmmathmlpaddedelement.lo lsmmathmlerrorelement.lo \
|
170
|
-
lsmmathmlactionelement.lo lsmmathmlstyle.lo lsmmathmlview.lo \
|
171
|
-
lsmmathmlglyphtableams.lo lsmmathmlalignmarkelement.lo \
|
172
|
-
lsmmathmlaligngroupelement.lo lsmmathmlitexelement.lo \
|
173
|
-
lsmmathmlutils.lo lsmmathmllayoututils.lo
|
174
|
-
am__objects_4 = lsmsvgenumtypes.lo lsmsvgenums.lo lsmsvgtraits.lo \
|
175
|
-
lsmsvgstyle.lo lsmsvgcolors.lo lsmsvglength.lo lsmsvgview.lo \
|
176
|
-
lsmsvgmatrix.lo lsmsvgdocument.lo lsmsvgelement.lo \
|
177
|
-
lsmsvgtransformable.lo lsmsvgclippathelement.lo \
|
178
|
-
lsmsvgsvgelement.lo lsmsvguseelement.lo lsmsvgimageelement.lo \
|
179
|
-
lsmsvgsymbolelement.lo lsmsvgmarkerelement.lo \
|
180
|
-
lsmsvgaelement.lo lsmsvggelement.lo lsmsvgdefselement.lo \
|
181
|
-
lsmsvgrectelement.lo lsmsvgcircleelement.lo \
|
182
|
-
lsmsvgellipseelement.lo lsmsvglineelement.lo \
|
183
|
-
lsmsvgpolylineelement.lo lsmsvgpolygonelement.lo \
|
184
|
-
lsmsvgpathelement.lo lsmsvgtextelement.lo \
|
185
|
-
lsmsvgtspanelement.lo lsmsvggradientelement.lo \
|
186
|
-
lsmsvglineargradientelement.lo lsmsvgradialgradientelement.lo \
|
187
|
-
lsmsvgstopelement.lo lsmsvgswitchelement.lo \
|
188
|
-
lsmsvgpatternelement.lo lsmsvgmaskelement.lo \
|
189
|
-
lsmsvgfilterelement.lo lsmsvgfilterprimitive.lo \
|
190
|
-
lsmsvgfilterblend.lo lsmsvgfiltercolormatrix.lo \
|
191
|
-
lsmsvgfiltercomposite.lo lsmsvgfilterconvolvematrix.lo \
|
192
|
-
lsmsvgfilterdisplacementmap.lo lsmsvgfilterflood.lo \
|
193
|
-
lsmsvgfiltergaussianblur.lo lsmsvgfilterimage.lo \
|
194
|
-
lsmsvgfilteroffset.lo lsmsvgfiltermerge.lo \
|
195
|
-
lsmsvgfiltermergenode.lo lsmsvgfiltermorphology.lo \
|
196
|
-
lsmsvgfilterspecularlighting.lo lsmsvgfiltertile.lo \
|
197
|
-
lsmsvgfilterturbulence.lo lsmsvgfiltersurface.lo
|
198
|
-
am__objects_5 =
|
199
|
-
am_liblasem_0.6_la_OBJECTS = $(am__objects_1) \
|
200
|
-
$(am__objects_2) $(am__objects_3) $(am__objects_4) \
|
201
|
-
$(am__objects_5) $(am__objects_5)
|
202
|
-
liblasem_0.6_la_OBJECTS = \
|
203
|
-
$(am_liblasem_0.6_la_OBJECTS)
|
204
|
-
AM_V_lt = $(am__v_lt_$(V))
|
205
|
-
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
206
|
-
am__v_lt_0 = --silent
|
207
|
-
am__v_lt_1 =
|
208
|
-
liblasem_0.6_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
|
209
|
-
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
210
|
-
$(AM_CFLAGS) $(CFLAGS) \
|
211
|
-
$(liblasem_0.6_la_LDFLAGS) $(LDFLAGS) -o $@
|
212
|
-
PROGRAMS = $(bin_PROGRAMS)
|
213
|
-
am_lasem_render_0.6_OBJECTS = lasemrender.$(OBJEXT)
|
214
|
-
lasem_render_0.6_OBJECTS = \
|
215
|
-
$(am_lasem_render_0.6_OBJECTS)
|
216
|
-
lasem_render_0.6_DEPENDENCIES = $(am__DEPENDENCIES_1) \
|
217
|
-
liblasem-0.6.la ../itex2mml/libitex2mml.la
|
218
|
-
lasem_render_0.6_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
|
219
|
-
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
220
|
-
$(AM_CFLAGS) $(CFLAGS) \
|
221
|
-
$(lasem_render_0.6_LDFLAGS) $(LDFLAGS) -o $@
|
222
|
-
AM_V_P = $(am__v_P_$(V))
|
223
|
-
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
224
|
-
am__v_P_0 = false
|
225
|
-
am__v_P_1 = :
|
226
|
-
AM_V_GEN = $(am__v_GEN_$(V))
|
227
|
-
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
228
|
-
am__v_GEN_0 = @echo " GEN " $@;
|
229
|
-
am__v_GEN_1 =
|
230
|
-
AM_V_at = $(am__v_at_$(V))
|
231
|
-
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
232
|
-
am__v_at_0 = @
|
233
|
-
am__v_at_1 =
|
234
|
-
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
235
|
-
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
236
|
-
am__depfiles_maybe = depfiles
|
237
|
-
am__mv = mv -f
|
238
|
-
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
239
|
-
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
240
|
-
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
241
|
-
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
242
|
-
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
243
|
-
$(AM_CFLAGS) $(CFLAGS)
|
244
|
-
AM_V_CC = $(am__v_CC_$(V))
|
245
|
-
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
246
|
-
am__v_CC_0 = @echo " CC " $@;
|
247
|
-
am__v_CC_1 =
|
248
|
-
CCLD = $(CC)
|
249
|
-
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
250
|
-
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
251
|
-
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
252
|
-
AM_V_CCLD = $(am__v_CCLD_$(V))
|
253
|
-
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
254
|
-
am__v_CCLD_0 = @echo " CCLD " $@;
|
255
|
-
am__v_CCLD_1 =
|
256
|
-
SOURCES = $(liblasem_0.6_la_SOURCES) \
|
257
|
-
$(lasem_render_0.6_SOURCES)
|
258
|
-
DIST_SOURCES = $(liblasem_0.6_la_SOURCES) \
|
259
|
-
$(lasem_render_0.6_SOURCES)
|
260
|
-
am__can_run_installinfo = \
|
261
|
-
case $$AM_UPDATE_INFO_DIR in \
|
262
|
-
n|no|NO) false;; \
|
263
|
-
*) (install-info --version) >/dev/null 2>&1;; \
|
264
|
-
esac
|
265
|
-
DATA = $(gir_DATA) $(typelib_DATA)
|
266
|
-
HEADERS = $(liblasem_0.6_la_HEADERS)
|
267
|
-
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
268
|
-
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \
|
269
|
-
$(top_srcdir)/depcomp
|
270
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
271
|
-
ACLOCAL = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing aclocal-1.15
|
272
|
-
ALL_LINGUAS =
|
273
|
-
AMTAR = $${TAR-tar}
|
274
|
-
AM_DEFAULT_VERBOSITY = 0
|
275
|
-
AR = ar
|
276
|
-
AUTOCONF = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoconf
|
277
|
-
AUTOHEADER = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoheader
|
278
|
-
AUTOMAKE = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing automake-1.15
|
279
|
-
AWK = awk
|
280
|
-
CATALOGS =
|
281
|
-
CATOBJEXT = .gmo
|
282
|
-
CC = gcc
|
283
|
-
CCDEPMODE = depmode=gcc3
|
284
|
-
CFLAGS = -I/usr/local/include -Wformat=2 -Wmissing-format-attribute -Wextra -Wundef -Wstrict-prototypes -Wnested-externs -Wchar-subscripts -Wwrite-strings -Wmissing-noreturn -Wmissing-declarations -Wcast-align -Winline -Waddress-space -Wbitwise -Wcast-to-as -Wno-pointer-sign -Wdefault-bitfield-sign -Wdo-while -Wparen-string -Wptr-subtraction-blows -Wreturn-void -Wtypesign -Wno-unused-parameter -Wno-sign-compare
|
285
|
-
CPP = gcc -E
|
286
|
-
CPPFLAGS =
|
287
|
-
CYGPATH_W = echo
|
288
|
-
DATADIRNAME = share
|
289
|
-
DEFS = -DHAVE_CONFIG_H
|
290
|
-
DEPDIR = .deps
|
291
|
-
DLLTOOL = false
|
292
|
-
DSYMUTIL = dsymutil
|
293
|
-
DUMPBIN =
|
294
|
-
ECHO_C = \c
|
295
|
-
ECHO_N =
|
296
|
-
ECHO_T =
|
297
|
-
EGREP = /usr/bin/grep -E
|
298
|
-
EXEEXT =
|
299
|
-
FGREP = /usr/bin/grep -F
|
300
|
-
GETTEXT_PACKAGE = lasem-0.6
|
301
|
-
GLIB_MKENUMS = /usr/local/bin/glib-mkenums
|
302
|
-
GMOFILES =
|
303
|
-
GMSGFMT = /usr/local/bin/msgfmt
|
304
|
-
GREP = /usr/bin/grep
|
305
|
-
GTKDOC_CHECK = gtkdoc-check.test
|
306
|
-
GTKDOC_CHECK_PATH = /usr/local/bin/gtkdoc-check
|
307
|
-
GTKDOC_DEPS_CFLAGS = -I/usr/local/Cellar/glib/2.44.1/include/glib-2.0 -I/usr/local/Cellar/glib/2.44.1/lib/glib-2.0/include -I/usr/local/opt/gettext/include
|
308
|
-
GTKDOC_DEPS_LIBS = -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/opt/gettext/lib -lgobject-2.0 -lglib-2.0 -lintl
|
309
|
-
GTKDOC_MKPDF = /usr/local/bin/gtkdoc-mkpdf
|
310
|
-
GTKDOC_REBASE = /usr/local/bin/gtkdoc-rebase
|
311
|
-
HTML_DIR = ${datadir}/gtk-doc/html
|
312
|
-
INSTALL = /usr/bin/install -c
|
313
|
-
INSTALL_DATA = ${INSTALL} -m 644
|
314
|
-
INSTALL_PROGRAM = ${INSTALL}
|
315
|
-
INSTALL_SCRIPT = ${INSTALL}
|
316
|
-
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
317
|
-
INSTOBJEXT = .mo
|
318
|
-
INTLLIBS = -lintl
|
319
|
-
INTLTOOL_EXTRACT = /usr/local/bin/intltool-extract
|
320
|
-
INTLTOOL_MERGE = /usr/local/bin/intltool-merge
|
321
|
-
INTLTOOL_PERL = /usr/bin/perl
|
322
|
-
INTLTOOL_UPDATE = /usr/local/bin/intltool-update
|
323
|
-
INTLTOOL_V_MERGE = $(INTLTOOL__v_MERGE_$(V))
|
324
|
-
INTLTOOL_V_MERGE_OPTIONS = $(intltool__v_merge_options_$(V))
|
325
|
-
INTLTOOL__v_MERGE_ = $(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))
|
326
|
-
INTLTOOL__v_MERGE_0 = @echo " ITMRG " $@;
|
327
|
-
INTROSPECTION_CFLAGS =
|
328
|
-
INTROSPECTION_COMPILER =
|
329
|
-
INTROSPECTION_GENERATE =
|
330
|
-
INTROSPECTION_GIRDIR =
|
331
|
-
INTROSPECTION_LIBS =
|
332
|
-
INTROSPECTION_MAKEFILE =
|
333
|
-
INTROSPECTION_SCANNER =
|
334
|
-
INTROSPECTION_TYPELIBDIR =
|
335
|
-
LASEM_API_VERSION = 0.6
|
336
|
-
LASEM_API_VERSION_U = 0_6
|
337
|
-
LASEM_CFLAGS = -D_REENTRANT -I/opt/X11/include/cairo -I/opt/X11/include/pixman-1 -I/opt/X11/include -I/opt/X11/include/freetype2 -I/opt/X11/include/libpng15 -I/opt/X11/include -I/usr/local/Cellar/gdk-pixbuf/2.30.8/include/gdk-pixbuf-2.0 -I/usr/local/Cellar/libpng/1.6.18/include/libpng16 -I/usr/local/Cellar/pango/1.36.8_2/include/pango-1.0 -I/usr/local/Cellar/glib/2.44.1/include/glib-2.0 -I/usr/local/Cellar/glib/2.44.1/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/include/libxml2
|
338
|
-
LASEM_LIBS = -L/opt/X11/lib -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/Cellar/gdk-pixbuf/2.30.8/lib -L/usr/local/Cellar/pango/1.36.8_2/lib -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/opt/gettext/lib -lgio-2.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lintl -lcairo -lxml2 -lm
|
339
|
-
LASEM_LIBTOOL_VERSION = 5:1:0
|
340
|
-
LD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
|
341
|
-
LDFLAGS = -L/usr/local/lib
|
342
|
-
LEX = flex
|
343
|
-
LEXLIB = -ll
|
344
|
-
LEX_OUTPUT_ROOT = lex.yy
|
345
|
-
LIBOBJS =
|
346
|
-
LIBS =
|
347
|
-
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
348
|
-
LIPO = lipo
|
349
|
-
LN_S = ln -s
|
350
|
-
LTLIBOBJS =
|
351
|
-
LT_SYS_LIBRARY_PATH =
|
352
|
-
MAINT =
|
353
|
-
MAKEINFO = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing makeinfo
|
354
|
-
MANIFEST_TOOL = :
|
355
|
-
MKDIR_P = .././install-sh -c -d
|
356
|
-
MKINSTALLDIRS = ./mkinstalldirs
|
357
|
-
MSGFMT = /usr/local/bin/msgfmt
|
358
|
-
MSGFMT_OPTS = -c
|
359
|
-
MSGMERGE = /usr/local/bin/msgmerge
|
360
|
-
NM = /usr/bin/nm
|
361
|
-
NMEDIT = nmedit
|
362
|
-
OBJDUMP = false
|
363
|
-
OBJEXT = o
|
364
|
-
OTOOL = otool
|
365
|
-
OTOOL64 = :
|
366
|
-
PACKAGE = lasem
|
367
|
-
PACKAGE_BUGREPORT = http://bugzilla.gnome.org/
|
368
|
-
PACKAGE_NAME = lasem
|
369
|
-
PACKAGE_STRING = lasem 0.5.1
|
370
|
-
PACKAGE_TARNAME = lasem
|
371
|
-
PACKAGE_URL =
|
372
|
-
PACKAGE_VERSION = 0.5.1
|
373
|
-
PATH_SEPARATOR = :
|
374
|
-
PKG_CONFIG = /usr/local/bin/pkg-config
|
375
|
-
PKG_CONFIG_LIBDIR =
|
376
|
-
PKG_CONFIG_PATH = /opt/X11/lib/pkgconfig:
|
377
|
-
POFILES =
|
378
|
-
POSUB = po
|
379
|
-
PO_IN_DATADIR_FALSE =
|
380
|
-
PO_IN_DATADIR_TRUE =
|
381
|
-
RANLIB = ranlib
|
382
|
-
SED = /usr/bin/sed
|
383
|
-
SET_MAKE =
|
384
|
-
SHELL = /bin/sh
|
385
|
-
STRIP = strip
|
386
|
-
USE_NLS = yes
|
387
|
-
VERSION = 0.5.1
|
388
|
-
XGETTEXT = /usr/local/bin/xgettext
|
389
|
-
YACC = bison -y
|
390
|
-
YFLAGS =
|
391
|
-
abs_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/src
|
392
|
-
abs_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/src
|
393
|
-
abs_top_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
394
|
-
abs_top_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
395
|
-
ac_ct_AR = ar
|
396
|
-
ac_ct_CC = gcc
|
397
|
-
ac_ct_DUMPBIN =
|
398
|
-
am__include = include
|
399
|
-
am__leading_dot = .
|
400
|
-
am__quote =
|
401
|
-
am__tar = $${TAR-tar} chof - "$$tardir"
|
402
|
-
am__untar = $${TAR-tar} xf -
|
403
|
-
bindir = ${exec_prefix}/bin
|
404
|
-
build = x86_64-apple-darwin14.5.0
|
405
|
-
build_alias =
|
406
|
-
build_cpu = x86_64
|
407
|
-
build_os = darwin14.5.0
|
408
|
-
build_vendor = apple
|
409
|
-
builddir = .
|
410
|
-
datadir = ${datarootdir}
|
411
|
-
datarootdir = ${prefix}/share
|
412
|
-
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
413
|
-
dvidir = ${docdir}
|
414
|
-
exec_prefix = ${prefix}
|
415
|
-
host = x86_64-apple-darwin14.5.0
|
416
|
-
host_alias =
|
417
|
-
host_cpu = x86_64
|
418
|
-
host_os = darwin14.5.0
|
419
|
-
host_vendor = apple
|
420
|
-
htmldir = ${docdir}
|
421
|
-
includedir = ${prefix}/include
|
422
|
-
infodir = ${datarootdir}/info
|
423
|
-
install_sh = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/install-sh
|
424
|
-
intltool__v_merge_options_ = $(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))
|
425
|
-
intltool__v_merge_options_0 = -q
|
426
|
-
libdir = ${exec_prefix}/lib
|
427
|
-
libexecdir = ${exec_prefix}/libexec
|
428
|
-
localedir = ${datarootdir}/locale
|
429
|
-
localstatedir = ${prefix}/var
|
430
|
-
mandir = ${datarootdir}/man
|
431
|
-
mkdir_p = $(MKDIR_P)
|
432
|
-
oldincludedir = /usr/include
|
433
|
-
pdfdir = ${docdir}
|
434
|
-
prefix = /usr/local
|
435
|
-
program_transform_name = s,x,x,
|
436
|
-
psdir = ${docdir}
|
437
|
-
sbindir = ${exec_prefix}/sbin
|
438
|
-
sharedstatedir = ${prefix}/com
|
439
|
-
srcdir = .
|
440
|
-
sysconfdir = ${prefix}/etc
|
441
|
-
target_alias =
|
442
|
-
top_build_prefix = ../
|
443
|
-
top_builddir = ..
|
444
|
-
top_srcdir = ..
|
445
|
-
GTESTER = gtester
|
446
|
-
GTESTER_REPORT = gtester-report
|
447
|
-
|
448
|
-
# initialize variables for unconditional += appending
|
449
|
-
TEST_PROGS =
|
450
|
-
AM_CPPFLAGS = \
|
451
|
-
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
452
|
-
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
453
|
-
-DPACKAGE_DATA_DIR=\""$(datadir)"\" $(LASEM_CFLAGS) \
|
454
|
-
-DG_LOG_DOMAIN=\"Lasem\"
|
455
|
-
|
456
|
-
AM_CFLAGS = -Wall
|
457
|
-
lib_LTLIBRARIES = liblasem-0.6.la
|
458
|
-
BUILT_SOURCES = lsmdomenumtypes.h \
|
459
|
-
lsmdomenumtypes.c \
|
460
|
-
lsmmathmlenumtypes.h \
|
461
|
-
lsmmathmlenumtypes.c \
|
462
|
-
lsmsvgenumtypes.h \
|
463
|
-
lsmsvgenumtypes.c
|
464
|
-
|
465
|
-
EXTRA_DIST = lsmdomenumtypes.h.template \
|
466
|
-
lsmdomenumtypes.c.template \
|
467
|
-
lsmmathmlenumtypes.h.template \
|
468
|
-
lsmmathmlenumtypes.c.template \
|
469
|
-
lsmsvgenumtypes.h.template \
|
470
|
-
lsmsvgenumtypes.c.template
|
471
|
-
|
472
|
-
liblasem_0.6_la_LIBADD = \
|
473
|
-
../itex2mml/libitex2mml.la \
|
474
|
-
$(LASEM_LIBS)
|
475
|
-
|
476
|
-
LASEM_DOM_SRCS = \
|
477
|
-
lsm.c \
|
478
|
-
lsmdebug.c \
|
479
|
-
lsmstr.c \
|
480
|
-
lsmutils.c \
|
481
|
-
lsmtraits.c \
|
482
|
-
lsmproperties.c \
|
483
|
-
lsmattributes.c \
|
484
|
-
lsmcairo.c \
|
485
|
-
lsmitex.c \
|
486
|
-
lsmdomentities.c \
|
487
|
-
lsmdomnode.c \
|
488
|
-
lsmdomnodelist.c \
|
489
|
-
lsmdomnamednodemap.c \
|
490
|
-
lsmdomdocument.c \
|
491
|
-
lsmdomdocumentfragment.c \
|
492
|
-
lsmdomelement.c \
|
493
|
-
lsmdomcharacterdata.c \
|
494
|
-
lsmdomtext.c \
|
495
|
-
lsmdomview.c \
|
496
|
-
lsmdomparser.c \
|
497
|
-
lsmdomimplementation.c
|
498
|
-
|
499
|
-
LASEM_DOM_BUILT_SRCS = \
|
500
|
-
lsmdomenumtypes.c \
|
501
|
-
lsmdomenumtypes.h
|
502
|
-
|
503
|
-
LASEM_MATHML_SRCS = \
|
504
|
-
lsmmathmlenumtypes.c \
|
505
|
-
lsmmathmlenums.c \
|
506
|
-
lsmmathmltraits.c \
|
507
|
-
lsmmathmlattributes.c \
|
508
|
-
lsmmathmloperatordictionary.c \
|
509
|
-
lsmmathmldocument.c \
|
510
|
-
lsmmathmlelement.c \
|
511
|
-
lsmmathmlsemanticselement.c \
|
512
|
-
lsmmathmlphantomelement.c \
|
513
|
-
lsmmathmlmathelement.c \
|
514
|
-
lsmmathmltableelement.c \
|
515
|
-
lsmmathmltablerowelement.c \
|
516
|
-
lsmmathmltablecellelement.c \
|
517
|
-
lsmmathmlspaceelement.c \
|
518
|
-
lsmmathmlradicalelement.c \
|
519
|
-
lsmmathmlscriptelement.c \
|
520
|
-
lsmmathmlfractionelement.c \
|
521
|
-
lsmmathmlunderoverelement.c \
|
522
|
-
lsmmathmlpresentationtoken.c \
|
523
|
-
lsmmathmloperatorelement.c \
|
524
|
-
lsmmathmlstringelement.c \
|
525
|
-
lsmmathmlpresentationcontainer.c \
|
526
|
-
lsmmathmlstyleelement.c \
|
527
|
-
lsmmathmlrowelement.c \
|
528
|
-
lsmmathmlencloseelement.c \
|
529
|
-
lsmmathmlfencedelement.c \
|
530
|
-
lsmmathmlpaddedelement.c \
|
531
|
-
lsmmathmlerrorelement.c \
|
532
|
-
lsmmathmlactionelement.c \
|
533
|
-
lsmmathmlstyle.c \
|
534
|
-
lsmmathmlview.c \
|
535
|
-
lsmmathmlglyphtableams.c \
|
536
|
-
lsmmathmlalignmarkelement.c \
|
537
|
-
lsmmathmlaligngroupelement.c \
|
538
|
-
lsmmathmlitexelement.c \
|
539
|
-
lsmmathmlutils.c \
|
540
|
-
lsmmathmllayoututils.c
|
541
|
-
|
542
|
-
LASEM_SVG_SRCS = \
|
543
|
-
lsmsvgenumtypes.c \
|
544
|
-
lsmsvgenums.c \
|
545
|
-
lsmsvgtraits.c \
|
546
|
-
lsmsvgstyle.c \
|
547
|
-
lsmsvgcolors.c \
|
548
|
-
lsmsvglength.c \
|
549
|
-
lsmsvgview.c \
|
550
|
-
lsmsvgmatrix.c \
|
551
|
-
lsmsvgdocument.c \
|
552
|
-
lsmsvgelement.c \
|
553
|
-
lsmsvgtransformable.c \
|
554
|
-
lsmsvgclippathelement.c \
|
555
|
-
lsmsvgsvgelement.c \
|
556
|
-
lsmsvguseelement.c \
|
557
|
-
lsmsvgimageelement.c \
|
558
|
-
lsmsvgsymbolelement.c \
|
559
|
-
lsmsvgmarkerelement.c \
|
560
|
-
lsmsvgaelement.c \
|
561
|
-
lsmsvggelement.c \
|
562
|
-
lsmsvgdefselement.c \
|
563
|
-
lsmsvgrectelement.c \
|
564
|
-
lsmsvgcircleelement.c \
|
565
|
-
lsmsvgellipseelement.c \
|
566
|
-
lsmsvglineelement.c \
|
567
|
-
lsmsvgpolylineelement.c \
|
568
|
-
lsmsvgpolygonelement.c \
|
569
|
-
lsmsvgpathelement.c \
|
570
|
-
lsmsvgtextelement.c \
|
571
|
-
lsmsvgtspanelement.c \
|
572
|
-
lsmsvggradientelement.c \
|
573
|
-
lsmsvglineargradientelement.c \
|
574
|
-
lsmsvgradialgradientelement.c \
|
575
|
-
lsmsvgstopelement.c \
|
576
|
-
lsmsvgswitchelement.c \
|
577
|
-
lsmsvgpatternelement.c \
|
578
|
-
lsmsvgmaskelement.c \
|
579
|
-
lsmsvgfilterelement.c \
|
580
|
-
lsmsvgfilterprimitive.c \
|
581
|
-
lsmsvgfilterblend.c \
|
582
|
-
lsmsvgfiltercolormatrix.c \
|
583
|
-
lsmsvgfiltercomposite.c \
|
584
|
-
lsmsvgfilterconvolvematrix.c \
|
585
|
-
lsmsvgfilterdisplacementmap.c \
|
586
|
-
lsmsvgfilterflood.c \
|
587
|
-
lsmsvgfiltergaussianblur.c \
|
588
|
-
lsmsvgfilterimage.c \
|
589
|
-
lsmsvgfilteroffset.c \
|
590
|
-
lsmsvgfiltermerge.c \
|
591
|
-
lsmsvgfiltermergenode.c \
|
592
|
-
lsmsvgfiltermorphology.c \
|
593
|
-
lsmsvgfilterspecularlighting.c \
|
594
|
-
lsmsvgfiltertile.c \
|
595
|
-
lsmsvgfilterturbulence.c \
|
596
|
-
lsmsvgfiltersurface.c
|
597
|
-
|
598
|
-
LASEM_DOM_HDRS = \
|
599
|
-
lsm.h \
|
600
|
-
lsmtypes.h \
|
601
|
-
lsmcairo.h \
|
602
|
-
lsmstr.h \
|
603
|
-
lsmutils.h \
|
604
|
-
lsmdebug.h \
|
605
|
-
lsmtraits.h \
|
606
|
-
lsmproperties.h \
|
607
|
-
lsmattributes.h \
|
608
|
-
lsmitex.h \
|
609
|
-
lsmdomentities.h \
|
610
|
-
lsmdom.h \
|
611
|
-
lsmdomtypes.h \
|
612
|
-
lsmdomnode.h \
|
613
|
-
lsmdomnodelist.h \
|
614
|
-
lsmdomnamednodemap.h \
|
615
|
-
lsmdomdocument.h \
|
616
|
-
lsmdomdocumentfragment.h \
|
617
|
-
lsmdomelement.h \
|
618
|
-
lsmdomcharacterdata.h \
|
619
|
-
lsmdomtext.h \
|
620
|
-
lsmdomview.h \
|
621
|
-
lsmdomparser.h \
|
622
|
-
lsmdomimplementation.h
|
623
|
-
|
624
|
-
LASEM_MATHML_HDRS = \
|
625
|
-
lsmmathml.h \
|
626
|
-
lsmmathmltypes.h \
|
627
|
-
lsmmathmlenums.h \
|
628
|
-
lsmmathmltraits.h \
|
629
|
-
lsmmathmlattributes.h \
|
630
|
-
lsmmathmloperatordictionary.h \
|
631
|
-
lsmmathmldocument.h \
|
632
|
-
lsmmathmlelement.h \
|
633
|
-
lsmmathmlsemanticselement.h \
|
634
|
-
lsmmathmlphantomelement.h \
|
635
|
-
lsmmathmlmathelement.h \
|
636
|
-
lsmmathmltableelement.h \
|
637
|
-
lsmmathmltablerowelement.h \
|
638
|
-
lsmmathmltablecellelement.h \
|
639
|
-
lsmmathmlspaceelement.h \
|
640
|
-
lsmmathmlradicalelement.h \
|
641
|
-
lsmmathmlscriptelement.h \
|
642
|
-
lsmmathmlfractionelement.h \
|
643
|
-
lsmmathmlunderoverelement.h \
|
644
|
-
lsmmathmlpresentationtoken.h \
|
645
|
-
lsmmathmloperatorelement.h \
|
646
|
-
lsmmathmlstringelement.h \
|
647
|
-
lsmmathmlpresentationcontainer.h \
|
648
|
-
lsmmathmlstyleelement.h \
|
649
|
-
lsmmathmlrowelement.h \
|
650
|
-
lsmmathmlencloseelement.h \
|
651
|
-
lsmmathmlfencedelement.h \
|
652
|
-
lsmmathmlpaddedelement.h \
|
653
|
-
lsmmathmlerrorelement.h \
|
654
|
-
lsmmathmlactionelement.h \
|
655
|
-
lsmmathmlstyle.h \
|
656
|
-
lsmmathmlview.h \
|
657
|
-
lsmmathmlglyphtableams.h \
|
658
|
-
lsmmathmlalignmarkelement.h \
|
659
|
-
lsmmathmlaligngroupelement.h \
|
660
|
-
lsmmathmlitexelement.h \
|
661
|
-
lsmmathmlutils.h \
|
662
|
-
lsmmathmllayoututils.h
|
663
|
-
|
664
|
-
LASEM_SVG_HDRS = \
|
665
|
-
lsmsvg.h \
|
666
|
-
lsmsvgtypes.h \
|
667
|
-
lsmsvgenums.h \
|
668
|
-
lsmsvgtraits.h \
|
669
|
-
lsmsvgattributes.h \
|
670
|
-
lsmsvgstyle.h \
|
671
|
-
lsmsvgcolors.h \
|
672
|
-
lsmsvglength.h \
|
673
|
-
lsmsvgview.h \
|
674
|
-
lsmsvgmatrix.h \
|
675
|
-
lsmsvgdocument.h \
|
676
|
-
lsmsvgelement.h \
|
677
|
-
lsmsvgtransformable.h \
|
678
|
-
lsmsvgclippathelement.h \
|
679
|
-
lsmsvgsvgelement.h \
|
680
|
-
lsmsvgaelement.h \
|
681
|
-
lsmsvggelement.h \
|
682
|
-
lsmsvgdefselement.h \
|
683
|
-
lsmsvguseelement.h \
|
684
|
-
lsmsvgimageelement.h \
|
685
|
-
lsmsvgsymbolelement.h \
|
686
|
-
lsmsvgmarkerelement.h \
|
687
|
-
lsmsvgrectelement.h \
|
688
|
-
lsmsvgcircleelement.h \
|
689
|
-
lsmsvgellipseelement.h \
|
690
|
-
lsmsvglineelement.h \
|
691
|
-
lsmsvgpathelement.h \
|
692
|
-
lsmsvgpolylineelement.h \
|
693
|
-
lsmsvgpolygonelement.h \
|
694
|
-
lsmsvgtextelement.h \
|
695
|
-
lsmsvgtspanelement.h \
|
696
|
-
lsmsvggradientelement.h \
|
697
|
-
lsmsvglineargradientelement.h \
|
698
|
-
lsmsvgradialgradientelement.h \
|
699
|
-
lsmsvgstopelement.h \
|
700
|
-
lsmsvgswitchelement.h \
|
701
|
-
lsmsvgpatternelement.h \
|
702
|
-
lsmsvgmaskelement.h \
|
703
|
-
lsmsvgfilterelement.h \
|
704
|
-
lsmsvgfilterprimitive.h \
|
705
|
-
lsmsvgfilterblend.h \
|
706
|
-
lsmsvgfiltercolormatrix.h \
|
707
|
-
lsmsvgfiltercomposite.h \
|
708
|
-
lsmsvgfilterdisplacementmap.h \
|
709
|
-
lsmsvgfilterconvolvematrix.h \
|
710
|
-
lsmsvgfilterflood.h \
|
711
|
-
lsmsvgfiltergaussianblur.h \
|
712
|
-
lsmsvgfilterimage.h \
|
713
|
-
lsmsvgfilteroffset.h \
|
714
|
-
lsmsvgfiltermerge.h \
|
715
|
-
lsmsvgfiltermergenode.h \
|
716
|
-
lsmsvgfiltermorphology.h \
|
717
|
-
lsmsvgfilterspecularlighting.h \
|
718
|
-
lsmsvgfiltertile.h \
|
719
|
-
lsmsvgfilterturbulence.h \
|
720
|
-
lsmsvgfiltersurface.h
|
721
|
-
|
722
|
-
liblasem_0.6_ladir = $(includedir)/lasem-0.6
|
723
|
-
liblasem_0.6_la_SOURCES = $(LASEM_DOM_SRCS) \
|
724
|
-
$(LASEM_DOM_BUILT_SRCS) $(LASEM_MATHML_SRCS) $(LASEM_SVG_SRCS) \
|
725
|
-
$(LASEM_MATHML_HDRS) $(LASEM_SVG_HDRS) lsmmathmlenumtypes.h \
|
726
|
-
lsmsvgenumtypes.h
|
727
|
-
liblasem_0.6_la_HEADERS = $(LASEM_DOM_HDRS) \
|
728
|
-
lsmdomenumtypes.h
|
729
|
-
liblasem_0.6_la_LDFLAGS = -version-info $(LASEM_LIBTOOL_VERSION)
|
730
|
-
lasem_render_0.6_SOURCES = \
|
731
|
-
lasemrender.c
|
732
|
-
|
733
|
-
lasem_render_0.6_LDFLAGS =
|
734
|
-
lasem_render_0.6_LDADD = $(LASEM_LIBS) liblasem-0.6.la ../itex2mml/libitex2mml.la
|
735
|
-
CLEANFILES = $(BUILT_SOURCES) $(am__append_2)
|
736
|
-
INTROSPECTION_GIRS = $(am__append_1)
|
737
|
-
INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir)
|
738
|
-
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
|
739
|
-
#introspection_files = $(LASEM_DOM_SRCS) \
|
740
|
-
# $(LASEM_DOM_HDRS)
|
741
|
-
|
742
|
-
#introspection_built_files = $(LASEM_DOM_BUILT_SRCS)
|
743
|
-
#Lasem_0_6_gir_INCLUDES = GObject-2.0 cairo-1.0 Gio-2.0 Pango-1.0 GdkPixbuf-2.0
|
744
|
-
#Lasem_0_6_gir_SCANNERFLAGS = --identifier-prefix=Lsm --warn-all
|
745
|
-
#Lasem_0_6_gir_CFLAGS = $(INCLUDES) -I$(top_srcdir)/src
|
746
|
-
#Lasem_0_6_gir_LIBS = liblasem-0.6.la
|
747
|
-
#Lasem_0_6_gir_FILES = $(addprefix $(srcdir)/,$(introspection_files)) $(addprefix $(top_builddir)/src/,$(introspection_built_files))
|
748
|
-
#girdir = $(datadir)/gir-1.0
|
749
|
-
#gir_DATA = $(INTROSPECTION_GIRS)
|
750
|
-
#typelibdir = $(libdir)/girepository-1.0
|
751
|
-
#typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
|
752
|
-
all: $(BUILT_SOURCES)
|
753
|
-
$(MAKE) $(AM_MAKEFLAGS) all-am
|
754
|
-
|
755
|
-
.SUFFIXES:
|
756
|
-
.SUFFIXES: .c .lo .o .obj
|
757
|
-
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps)
|
758
|
-
@for dep in $?; do \
|
759
|
-
case '$(am__configure_deps)' in \
|
760
|
-
*$$dep*) \
|
761
|
-
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
762
|
-
&& { if test -f $@; then exit 0; else break; fi; }; \
|
763
|
-
exit 1;; \
|
764
|
-
esac; \
|
765
|
-
done; \
|
766
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
767
|
-
$(am__cd) $(top_srcdir) && \
|
768
|
-
$(AUTOMAKE) --gnu src/Makefile
|
769
|
-
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
770
|
-
@case '$?' in \
|
771
|
-
*config.status*) \
|
772
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
773
|
-
*) \
|
774
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
775
|
-
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
776
|
-
esac;
|
777
|
-
$(top_srcdir)/Makefile.decl $(am__empty):
|
778
|
-
|
779
|
-
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
780
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
781
|
-
|
782
|
-
$(top_srcdir)/configure: $(am__configure_deps)
|
783
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
784
|
-
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
785
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
786
|
-
$(am__aclocal_m4_deps):
|
787
|
-
|
788
|
-
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
789
|
-
@$(NORMAL_INSTALL)
|
790
|
-
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
791
|
-
list2=; for p in $$list; do \
|
792
|
-
if test -f $$p; then \
|
793
|
-
list2="$$list2 $$p"; \
|
794
|
-
else :; fi; \
|
795
|
-
done; \
|
796
|
-
test -z "$$list2" || { \
|
797
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
|
798
|
-
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
|
799
|
-
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
800
|
-
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
801
|
-
}
|
802
|
-
|
803
|
-
uninstall-libLTLIBRARIES:
|
804
|
-
@$(NORMAL_UNINSTALL)
|
805
|
-
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
806
|
-
for p in $$list; do \
|
807
|
-
$(am__strip_dir) \
|
808
|
-
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
809
|
-
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
810
|
-
done
|
811
|
-
|
812
|
-
clean-libLTLIBRARIES:
|
813
|
-
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
814
|
-
@list='$(lib_LTLIBRARIES)'; \
|
815
|
-
locs=`for p in $$list; do echo $$p; done | \
|
816
|
-
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
817
|
-
sort -u`; \
|
818
|
-
test -z "$$locs" || { \
|
819
|
-
echo rm -f $${locs}; \
|
820
|
-
rm -f $${locs}; \
|
821
|
-
}
|
822
|
-
|
823
|
-
liblasem-0.6.la: $(liblasem_0.6_la_OBJECTS) $(liblasem_0.6_la_DEPENDENCIES) $(EXTRA_liblasem_0.6_la_DEPENDENCIES)
|
824
|
-
$(AM_V_CCLD)$(liblasem_0.6_la_LINK) -rpath $(libdir) $(liblasem_0.6_la_OBJECTS) $(liblasem_0.6_la_LIBADD) $(LIBS)
|
825
|
-
install-binPROGRAMS: $(bin_PROGRAMS)
|
826
|
-
@$(NORMAL_INSTALL)
|
827
|
-
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
828
|
-
if test -n "$$list"; then \
|
829
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
830
|
-
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
831
|
-
fi; \
|
832
|
-
for p in $$list; do echo "$$p $$p"; done | \
|
833
|
-
sed 's/$(EXEEXT)$$//' | \
|
834
|
-
while read p p1; do if test -f $$p \
|
835
|
-
|| test -f $$p1 \
|
836
|
-
; then echo "$$p"; echo "$$p"; else :; fi; \
|
837
|
-
done | \
|
838
|
-
sed -e 'p;s,.*/,,;n;h' \
|
839
|
-
-e 's|.*|.|' \
|
840
|
-
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
|
841
|
-
sed 'N;N;N;s,\n, ,g' | \
|
842
|
-
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
|
843
|
-
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
844
|
-
if ($$2 == $$4) files[d] = files[d] " " $$1; \
|
845
|
-
else { print "f", $$3 "/" $$4, $$1; } } \
|
846
|
-
END { for (d in files) print "f", d, files[d] }' | \
|
847
|
-
while read type dir files; do \
|
848
|
-
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
849
|
-
test -z "$$files" || { \
|
850
|
-
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
851
|
-
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
852
|
-
} \
|
853
|
-
; done
|
854
|
-
|
855
|
-
uninstall-binPROGRAMS:
|
856
|
-
@$(NORMAL_UNINSTALL)
|
857
|
-
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
858
|
-
files=`for p in $$list; do echo "$$p"; done | \
|
859
|
-
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
|
860
|
-
-e 's/$$/$(EXEEXT)/' \
|
861
|
-
`; \
|
862
|
-
test -n "$$list" || exit 0; \
|
863
|
-
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
|
864
|
-
cd "$(DESTDIR)$(bindir)" && rm -f $$files
|
865
|
-
|
866
|
-
clean-binPROGRAMS:
|
867
|
-
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
|
868
|
-
echo " rm -f" $$list; \
|
869
|
-
rm -f $$list || exit $$?; \
|
870
|
-
test -n "$(EXEEXT)" || exit 0; \
|
871
|
-
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
872
|
-
echo " rm -f" $$list; \
|
873
|
-
rm -f $$list
|
874
|
-
|
875
|
-
lasem-render-0.6$(EXEEXT): $(lasem_render_0.6_OBJECTS) $(lasem_render_0.6_DEPENDENCIES) $(EXTRA_lasem_render_0.6_DEPENDENCIES)
|
876
|
-
@rm -f lasem-render-0.6$(EXEEXT)
|
877
|
-
$(AM_V_CCLD)$(lasem_render_0.6_LINK) $(lasem_render_0.6_OBJECTS) $(lasem_render_0.6_LDADD) $(LIBS)
|
878
|
-
|
879
|
-
mostlyclean-compile:
|
880
|
-
-rm -f *.$(OBJEXT)
|
881
|
-
|
882
|
-
distclean-compile:
|
883
|
-
-rm -f *.tab.c
|
884
|
-
|
885
|
-
include ./$(DEPDIR)/lasemrender.Po
|
886
|
-
include ./$(DEPDIR)/lsm.Plo
|
887
|
-
include ./$(DEPDIR)/lsmattributes.Plo
|
888
|
-
include ./$(DEPDIR)/lsmcairo.Plo
|
889
|
-
include ./$(DEPDIR)/lsmdebug.Plo
|
890
|
-
include ./$(DEPDIR)/lsmdomcharacterdata.Plo
|
891
|
-
include ./$(DEPDIR)/lsmdomdocument.Plo
|
892
|
-
include ./$(DEPDIR)/lsmdomdocumentfragment.Plo
|
893
|
-
include ./$(DEPDIR)/lsmdomelement.Plo
|
894
|
-
include ./$(DEPDIR)/lsmdomentities.Plo
|
895
|
-
include ./$(DEPDIR)/lsmdomenumtypes.Plo
|
896
|
-
include ./$(DEPDIR)/lsmdomimplementation.Plo
|
897
|
-
include ./$(DEPDIR)/lsmdomnamednodemap.Plo
|
898
|
-
include ./$(DEPDIR)/lsmdomnode.Plo
|
899
|
-
include ./$(DEPDIR)/lsmdomnodelist.Plo
|
900
|
-
include ./$(DEPDIR)/lsmdomparser.Plo
|
901
|
-
include ./$(DEPDIR)/lsmdomtext.Plo
|
902
|
-
include ./$(DEPDIR)/lsmdomview.Plo
|
903
|
-
include ./$(DEPDIR)/lsmitex.Plo
|
904
|
-
include ./$(DEPDIR)/lsmmathmlactionelement.Plo
|
905
|
-
include ./$(DEPDIR)/lsmmathmlaligngroupelement.Plo
|
906
|
-
include ./$(DEPDIR)/lsmmathmlalignmarkelement.Plo
|
907
|
-
include ./$(DEPDIR)/lsmmathmlattributes.Plo
|
908
|
-
include ./$(DEPDIR)/lsmmathmldocument.Plo
|
909
|
-
include ./$(DEPDIR)/lsmmathmlelement.Plo
|
910
|
-
include ./$(DEPDIR)/lsmmathmlencloseelement.Plo
|
911
|
-
include ./$(DEPDIR)/lsmmathmlenums.Plo
|
912
|
-
include ./$(DEPDIR)/lsmmathmlenumtypes.Plo
|
913
|
-
include ./$(DEPDIR)/lsmmathmlerrorelement.Plo
|
914
|
-
include ./$(DEPDIR)/lsmmathmlfencedelement.Plo
|
915
|
-
include ./$(DEPDIR)/lsmmathmlfractionelement.Plo
|
916
|
-
include ./$(DEPDIR)/lsmmathmlglyphtableams.Plo
|
917
|
-
include ./$(DEPDIR)/lsmmathmlitexelement.Plo
|
918
|
-
include ./$(DEPDIR)/lsmmathmllayoututils.Plo
|
919
|
-
include ./$(DEPDIR)/lsmmathmlmathelement.Plo
|
920
|
-
include ./$(DEPDIR)/lsmmathmloperatordictionary.Plo
|
921
|
-
include ./$(DEPDIR)/lsmmathmloperatorelement.Plo
|
922
|
-
include ./$(DEPDIR)/lsmmathmlpaddedelement.Plo
|
923
|
-
include ./$(DEPDIR)/lsmmathmlphantomelement.Plo
|
924
|
-
include ./$(DEPDIR)/lsmmathmlpresentationcontainer.Plo
|
925
|
-
include ./$(DEPDIR)/lsmmathmlpresentationtoken.Plo
|
926
|
-
include ./$(DEPDIR)/lsmmathmlradicalelement.Plo
|
927
|
-
include ./$(DEPDIR)/lsmmathmlrowelement.Plo
|
928
|
-
include ./$(DEPDIR)/lsmmathmlscriptelement.Plo
|
929
|
-
include ./$(DEPDIR)/lsmmathmlsemanticselement.Plo
|
930
|
-
include ./$(DEPDIR)/lsmmathmlspaceelement.Plo
|
931
|
-
include ./$(DEPDIR)/lsmmathmlstringelement.Plo
|
932
|
-
include ./$(DEPDIR)/lsmmathmlstyle.Plo
|
933
|
-
include ./$(DEPDIR)/lsmmathmlstyleelement.Plo
|
934
|
-
include ./$(DEPDIR)/lsmmathmltablecellelement.Plo
|
935
|
-
include ./$(DEPDIR)/lsmmathmltableelement.Plo
|
936
|
-
include ./$(DEPDIR)/lsmmathmltablerowelement.Plo
|
937
|
-
include ./$(DEPDIR)/lsmmathmltraits.Plo
|
938
|
-
include ./$(DEPDIR)/lsmmathmlunderoverelement.Plo
|
939
|
-
include ./$(DEPDIR)/lsmmathmlutils.Plo
|
940
|
-
include ./$(DEPDIR)/lsmmathmlview.Plo
|
941
|
-
include ./$(DEPDIR)/lsmproperties.Plo
|
942
|
-
include ./$(DEPDIR)/lsmstr.Plo
|
943
|
-
include ./$(DEPDIR)/lsmsvgaelement.Plo
|
944
|
-
include ./$(DEPDIR)/lsmsvgcircleelement.Plo
|
945
|
-
include ./$(DEPDIR)/lsmsvgclippathelement.Plo
|
946
|
-
include ./$(DEPDIR)/lsmsvgcolors.Plo
|
947
|
-
include ./$(DEPDIR)/lsmsvgdefselement.Plo
|
948
|
-
include ./$(DEPDIR)/lsmsvgdocument.Plo
|
949
|
-
include ./$(DEPDIR)/lsmsvgelement.Plo
|
950
|
-
include ./$(DEPDIR)/lsmsvgellipseelement.Plo
|
951
|
-
include ./$(DEPDIR)/lsmsvgenums.Plo
|
952
|
-
include ./$(DEPDIR)/lsmsvgenumtypes.Plo
|
953
|
-
include ./$(DEPDIR)/lsmsvgfilterblend.Plo
|
954
|
-
include ./$(DEPDIR)/lsmsvgfiltercolormatrix.Plo
|
955
|
-
include ./$(DEPDIR)/lsmsvgfiltercomposite.Plo
|
956
|
-
include ./$(DEPDIR)/lsmsvgfilterconvolvematrix.Plo
|
957
|
-
include ./$(DEPDIR)/lsmsvgfilterdisplacementmap.Plo
|
958
|
-
include ./$(DEPDIR)/lsmsvgfilterelement.Plo
|
959
|
-
include ./$(DEPDIR)/lsmsvgfilterflood.Plo
|
960
|
-
include ./$(DEPDIR)/lsmsvgfiltergaussianblur.Plo
|
961
|
-
include ./$(DEPDIR)/lsmsvgfilterimage.Plo
|
962
|
-
include ./$(DEPDIR)/lsmsvgfiltermerge.Plo
|
963
|
-
include ./$(DEPDIR)/lsmsvgfiltermergenode.Plo
|
964
|
-
include ./$(DEPDIR)/lsmsvgfiltermorphology.Plo
|
965
|
-
include ./$(DEPDIR)/lsmsvgfilteroffset.Plo
|
966
|
-
include ./$(DEPDIR)/lsmsvgfilterprimitive.Plo
|
967
|
-
include ./$(DEPDIR)/lsmsvgfilterspecularlighting.Plo
|
968
|
-
include ./$(DEPDIR)/lsmsvgfiltersurface.Plo
|
969
|
-
include ./$(DEPDIR)/lsmsvgfiltertile.Plo
|
970
|
-
include ./$(DEPDIR)/lsmsvgfilterturbulence.Plo
|
971
|
-
include ./$(DEPDIR)/lsmsvggelement.Plo
|
972
|
-
include ./$(DEPDIR)/lsmsvggradientelement.Plo
|
973
|
-
include ./$(DEPDIR)/lsmsvgimageelement.Plo
|
974
|
-
include ./$(DEPDIR)/lsmsvglength.Plo
|
975
|
-
include ./$(DEPDIR)/lsmsvglineargradientelement.Plo
|
976
|
-
include ./$(DEPDIR)/lsmsvglineelement.Plo
|
977
|
-
include ./$(DEPDIR)/lsmsvgmarkerelement.Plo
|
978
|
-
include ./$(DEPDIR)/lsmsvgmaskelement.Plo
|
979
|
-
include ./$(DEPDIR)/lsmsvgmatrix.Plo
|
980
|
-
include ./$(DEPDIR)/lsmsvgpathelement.Plo
|
981
|
-
include ./$(DEPDIR)/lsmsvgpatternelement.Plo
|
982
|
-
include ./$(DEPDIR)/lsmsvgpolygonelement.Plo
|
983
|
-
include ./$(DEPDIR)/lsmsvgpolylineelement.Plo
|
984
|
-
include ./$(DEPDIR)/lsmsvgradialgradientelement.Plo
|
985
|
-
include ./$(DEPDIR)/lsmsvgrectelement.Plo
|
986
|
-
include ./$(DEPDIR)/lsmsvgstopelement.Plo
|
987
|
-
include ./$(DEPDIR)/lsmsvgstyle.Plo
|
988
|
-
include ./$(DEPDIR)/lsmsvgsvgelement.Plo
|
989
|
-
include ./$(DEPDIR)/lsmsvgswitchelement.Plo
|
990
|
-
include ./$(DEPDIR)/lsmsvgsymbolelement.Plo
|
991
|
-
include ./$(DEPDIR)/lsmsvgtextelement.Plo
|
992
|
-
include ./$(DEPDIR)/lsmsvgtraits.Plo
|
993
|
-
include ./$(DEPDIR)/lsmsvgtransformable.Plo
|
994
|
-
include ./$(DEPDIR)/lsmsvgtspanelement.Plo
|
995
|
-
include ./$(DEPDIR)/lsmsvguseelement.Plo
|
996
|
-
include ./$(DEPDIR)/lsmsvgview.Plo
|
997
|
-
include ./$(DEPDIR)/lsmtraits.Plo
|
998
|
-
include ./$(DEPDIR)/lsmutils.Plo
|
999
|
-
|
1000
|
-
.c.o:
|
1001
|
-
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
1002
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
1003
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
1004
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
1005
|
-
# $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
|
1006
|
-
|
1007
|
-
.c.obj:
|
1008
|
-
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
1009
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
1010
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
1011
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
1012
|
-
# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1013
|
-
|
1014
|
-
.c.lo:
|
1015
|
-
$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
1016
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
1017
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=yes \
|
1018
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
1019
|
-
# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
|
1020
|
-
|
1021
|
-
mostlyclean-libtool:
|
1022
|
-
-rm -f *.lo
|
1023
|
-
|
1024
|
-
clean-libtool:
|
1025
|
-
-rm -rf .libs _libs
|
1026
|
-
install-girDATA: $(gir_DATA)
|
1027
|
-
@$(NORMAL_INSTALL)
|
1028
|
-
@list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
|
1029
|
-
if test -n "$$list"; then \
|
1030
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(girdir)'"; \
|
1031
|
-
$(MKDIR_P) "$(DESTDIR)$(girdir)" || exit 1; \
|
1032
|
-
fi; \
|
1033
|
-
for p in $$list; do \
|
1034
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1035
|
-
echo "$$d$$p"; \
|
1036
|
-
done | $(am__base_list) | \
|
1037
|
-
while read files; do \
|
1038
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(girdir)'"; \
|
1039
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \
|
1040
|
-
done
|
1041
|
-
|
1042
|
-
uninstall-girDATA:
|
1043
|
-
@$(NORMAL_UNINSTALL)
|
1044
|
-
@list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
|
1045
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
1046
|
-
dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
|
1047
|
-
install-typelibDATA: $(typelib_DATA)
|
1048
|
-
@$(NORMAL_INSTALL)
|
1049
|
-
@list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
|
1050
|
-
if test -n "$$list"; then \
|
1051
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(typelibdir)'"; \
|
1052
|
-
$(MKDIR_P) "$(DESTDIR)$(typelibdir)" || exit 1; \
|
1053
|
-
fi; \
|
1054
|
-
for p in $$list; do \
|
1055
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1056
|
-
echo "$$d$$p"; \
|
1057
|
-
done | $(am__base_list) | \
|
1058
|
-
while read files; do \
|
1059
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibdir)'"; \
|
1060
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \
|
1061
|
-
done
|
1062
|
-
|
1063
|
-
uninstall-typelibDATA:
|
1064
|
-
@$(NORMAL_UNINSTALL)
|
1065
|
-
@list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
|
1066
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
1067
|
-
dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
|
1068
|
-
install-liblasem_0.6_laHEADERS: $(liblasem_0.6_la_HEADERS)
|
1069
|
-
@$(NORMAL_INSTALL)
|
1070
|
-
@list='$(liblasem_0.6_la_HEADERS)'; test -n "$(liblasem_0.6_ladir)" || list=; \
|
1071
|
-
if test -n "$$list"; then \
|
1072
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(liblasem_0.6_ladir)'"; \
|
1073
|
-
$(MKDIR_P) "$(DESTDIR)$(liblasem_0.6_ladir)" || exit 1; \
|
1074
|
-
fi; \
|
1075
|
-
for p in $$list; do \
|
1076
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1077
|
-
echo "$$d$$p"; \
|
1078
|
-
done | $(am__base_list) | \
|
1079
|
-
while read files; do \
|
1080
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(liblasem_0.6_ladir)'"; \
|
1081
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(liblasem_0.6_ladir)" || exit $$?; \
|
1082
|
-
done
|
1083
|
-
|
1084
|
-
uninstall-liblasem_0.6_laHEADERS:
|
1085
|
-
@$(NORMAL_UNINSTALL)
|
1086
|
-
@list='$(liblasem_0.6_la_HEADERS)'; test -n "$(liblasem_0.6_ladir)" || list=; \
|
1087
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
1088
|
-
dir='$(DESTDIR)$(liblasem_0.6_ladir)'; $(am__uninstall_files_from_dir)
|
1089
|
-
tags TAGS:
|
1090
|
-
|
1091
|
-
ctags CTAGS:
|
1092
|
-
|
1093
|
-
cscope cscopelist:
|
1094
|
-
|
1095
|
-
|
1096
|
-
distdir: $(DISTFILES)
|
1097
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1098
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1099
|
-
list='$(DISTFILES)'; \
|
1100
|
-
dist_files=`for file in $$list; do echo $$file; done | \
|
1101
|
-
sed -e "s|^$$srcdirstrip/||;t" \
|
1102
|
-
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
1103
|
-
case $$dist_files in \
|
1104
|
-
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
1105
|
-
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
1106
|
-
sort -u` ;; \
|
1107
|
-
esac; \
|
1108
|
-
for file in $$dist_files; do \
|
1109
|
-
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
1110
|
-
if test -d $$d/$$file; then \
|
1111
|
-
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
1112
|
-
if test -d "$(distdir)/$$file"; then \
|
1113
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1114
|
-
fi; \
|
1115
|
-
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
1116
|
-
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
1117
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1118
|
-
fi; \
|
1119
|
-
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
1120
|
-
else \
|
1121
|
-
test -f "$(distdir)/$$file" \
|
1122
|
-
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
1123
|
-
|| exit 1; \
|
1124
|
-
fi; \
|
1125
|
-
done
|
1126
|
-
check-am: all-am
|
1127
|
-
$(MAKE) $(AM_MAKEFLAGS) check-local
|
1128
|
-
check: $(BUILT_SOURCES)
|
1129
|
-
$(MAKE) $(AM_MAKEFLAGS) check-am
|
1130
|
-
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS)
|
1131
|
-
install-binPROGRAMS: install-libLTLIBRARIES
|
1132
|
-
|
1133
|
-
installdirs:
|
1134
|
-
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(liblasem_0.6_ladir)"; do \
|
1135
|
-
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
1136
|
-
done
|
1137
|
-
install: $(BUILT_SOURCES)
|
1138
|
-
$(MAKE) $(AM_MAKEFLAGS) install-am
|
1139
|
-
install-exec: install-exec-am
|
1140
|
-
install-data: install-data-am
|
1141
|
-
uninstall: uninstall-am
|
1142
|
-
|
1143
|
-
install-am: all-am
|
1144
|
-
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
1145
|
-
|
1146
|
-
installcheck: installcheck-am
|
1147
|
-
install-strip:
|
1148
|
-
if test -z '$(STRIP)'; then \
|
1149
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1150
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1151
|
-
install; \
|
1152
|
-
else \
|
1153
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1154
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1155
|
-
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
1156
|
-
fi
|
1157
|
-
mostlyclean-generic:
|
1158
|
-
|
1159
|
-
clean-generic:
|
1160
|
-
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
1161
|
-
|
1162
|
-
distclean-generic:
|
1163
|
-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
1164
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
1165
|
-
|
1166
|
-
maintainer-clean-generic:
|
1167
|
-
@echo "This command is intended for maintainers to use"
|
1168
|
-
@echo "it deletes files that may require special tools to rebuild."
|
1169
|
-
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
1170
|
-
clean: clean-am
|
1171
|
-
|
1172
|
-
clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
|
1173
|
-
clean-libtool mostlyclean-am
|
1174
|
-
|
1175
|
-
distclean: distclean-am
|
1176
|
-
-rm -rf ./$(DEPDIR)
|
1177
|
-
-rm -f Makefile
|
1178
|
-
distclean-am: clean-am distclean-compile distclean-generic
|
1179
|
-
|
1180
|
-
dvi: dvi-am
|
1181
|
-
|
1182
|
-
dvi-am:
|
1183
|
-
|
1184
|
-
html: html-am
|
1185
|
-
|
1186
|
-
html-am:
|
1187
|
-
|
1188
|
-
info: info-am
|
1189
|
-
|
1190
|
-
info-am:
|
1191
|
-
|
1192
|
-
install-data-am: install-girDATA \
|
1193
|
-
install-liblasem_0.6_laHEADERS \
|
1194
|
-
install-typelibDATA
|
1195
|
-
|
1196
|
-
install-dvi: install-dvi-am
|
1197
|
-
|
1198
|
-
install-dvi-am:
|
1199
|
-
|
1200
|
-
install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
|
1201
|
-
|
1202
|
-
install-html: install-html-am
|
1203
|
-
|
1204
|
-
install-html-am:
|
1205
|
-
|
1206
|
-
install-info: install-info-am
|
1207
|
-
|
1208
|
-
install-info-am:
|
1209
|
-
|
1210
|
-
install-man:
|
1211
|
-
|
1212
|
-
install-pdf: install-pdf-am
|
1213
|
-
|
1214
|
-
install-pdf-am:
|
1215
|
-
|
1216
|
-
install-ps: install-ps-am
|
1217
|
-
|
1218
|
-
install-ps-am:
|
1219
|
-
|
1220
|
-
installcheck-am:
|
1221
|
-
|
1222
|
-
maintainer-clean: maintainer-clean-am
|
1223
|
-
-rm -rf ./$(DEPDIR)
|
1224
|
-
-rm -f Makefile
|
1225
|
-
maintainer-clean-am: distclean-am maintainer-clean-generic
|
1226
|
-
|
1227
|
-
mostlyclean: mostlyclean-am
|
1228
|
-
|
1229
|
-
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
1230
|
-
mostlyclean-libtool
|
1231
|
-
|
1232
|
-
pdf: pdf-am
|
1233
|
-
|
1234
|
-
pdf-am:
|
1235
|
-
|
1236
|
-
ps: ps-am
|
1237
|
-
|
1238
|
-
ps-am:
|
1239
|
-
|
1240
|
-
uninstall-am: uninstall-binPROGRAMS uninstall-girDATA \
|
1241
|
-
uninstall-libLTLIBRARIES \
|
1242
|
-
uninstall-liblasem_0.6_laHEADERS \
|
1243
|
-
uninstall-typelibDATA
|
1244
|
-
|
1245
|
-
.MAKE: all check check-am install install-am install-strip
|
1246
|
-
|
1247
|
-
.PHONY: all all-am check check-am check-local clean clean-binPROGRAMS \
|
1248
|
-
clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
|
1249
|
-
ctags-am distclean distclean-compile distclean-generic \
|
1250
|
-
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
1251
|
-
install install-am install-binPROGRAMS install-data \
|
1252
|
-
install-data-am install-dvi install-dvi-am install-exec \
|
1253
|
-
install-exec-am install-girDATA install-html install-html-am \
|
1254
|
-
install-info install-info-am install-libLTLIBRARIES \
|
1255
|
-
install-liblasem_0.6_laHEADERS install-man \
|
1256
|
-
install-pdf install-pdf-am install-ps install-ps-am \
|
1257
|
-
install-strip install-typelibDATA installcheck installcheck-am \
|
1258
|
-
installdirs maintainer-clean maintainer-clean-generic \
|
1259
|
-
mostlyclean mostlyclean-compile mostlyclean-generic \
|
1260
|
-
mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
|
1261
|
-
uninstall-am uninstall-binPROGRAMS uninstall-girDATA \
|
1262
|
-
uninstall-libLTLIBRARIES \
|
1263
|
-
uninstall-liblasem_0.6_laHEADERS \
|
1264
|
-
uninstall-typelibDATA
|
1265
|
-
|
1266
|
-
.PRECIOUS: Makefile
|
1267
|
-
|
1268
|
-
|
1269
|
-
### testing rules
|
1270
|
-
|
1271
|
-
# test: run all tests in cwd and subdirs
|
1272
|
-
test: ${TEST_PROGS}
|
1273
|
-
@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
|
1274
|
-
@ for subdir in $(SUBDIRS) . ; do \
|
1275
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
1276
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
1277
|
-
done
|
1278
|
-
|
1279
|
-
# test-report: run tests in subdirs and generate report
|
1280
|
-
# perf-report: run tests in subdirs with -m perf and generate report
|
1281
|
-
# full-report: like test-report: with -m perf and -m slow
|
1282
|
-
test-report perf-report full-report: ${TEST_PROGS}
|
1283
|
-
@test -z "${TEST_PROGS}" || { \
|
1284
|
-
case $@ in \
|
1285
|
-
test-report) test_options="-k";; \
|
1286
|
-
perf-report) test_options="-k -m=perf";; \
|
1287
|
-
full-report) test_options="-k -m=perf -m=slow";; \
|
1288
|
-
esac ; \
|
1289
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
1290
|
-
${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
|
1291
|
-
elif test -n "${TEST_PROGS}" ; then \
|
1292
|
-
${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
|
1293
|
-
fi ; \
|
1294
|
-
}
|
1295
|
-
@ ignore_logdir=true ; \
|
1296
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
1297
|
-
GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
|
1298
|
-
ignore_logdir=false ; \
|
1299
|
-
fi ; \
|
1300
|
-
for subdir in $(SUBDIRS) . ; do \
|
1301
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
1302
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
1303
|
-
done ; \
|
1304
|
-
$$ignore_logdir || { \
|
1305
|
-
echo '<?xml version="1.0"?>' > $@.xml ; \
|
1306
|
-
echo '<report-collection>' >> $@.xml ; \
|
1307
|
-
for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
|
1308
|
-
sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
|
1309
|
-
done ; \
|
1310
|
-
echo >> $@.xml ; \
|
1311
|
-
echo '</report-collection>' >> $@.xml ; \
|
1312
|
-
rm -rf "$$GTESTER_LOGDIR"/ ; \
|
1313
|
-
${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
|
1314
|
-
}
|
1315
|
-
.PHONY: test test-report perf-report full-report
|
1316
|
-
# run make test as part of make check
|
1317
|
-
check-local: test
|
1318
|
-
|
1319
|
-
lsmdomenumtypes.h: lsmdomenumtypes.h.template $(LASEM_DOM_HDRS) $(GLIB_MKENUMS)
|
1320
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmdomenumtypes.h.template $(LASEM_DOM_HDRS)) > $@
|
1321
|
-
|
1322
|
-
lsmdomenumtypes.c: lsmdomenumtypes.c.template $(LASEM_DOM_HDRS) $(GLIB_MKENUMS)
|
1323
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmdomenumtypes.c.template $(LASEM_DOM_HDRS)) > $@
|
1324
|
-
|
1325
|
-
lsmmathmlenumtypes.h: lsmmathmlenumtypes.h.template $(LASEM_MATHML_HDRS) $(GLIB_MKENUMS)
|
1326
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmmathmlenumtypes.h.template $(LASEM_MATHML_HDRS)) > $@
|
1327
|
-
|
1328
|
-
lsmmathmlenumtypes.c: lsmmathmlenumtypes.c.template $(LASEM_MATHML_HDRS) $(GLIB_MKENUMS)
|
1329
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmmathmlenumtypes.c.template $(LASEM_MATHML_HDRS)) > $@
|
1330
|
-
|
1331
|
-
lsmsvgenumtypes.h: lsmsvgenumtypes.h.template $(LASEM_SVG_HDRS) $(GLIB_MKENUMS)
|
1332
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmsvgenumtypes.h.template $(LASEM_SVG_HDRS)) > $@
|
1333
|
-
|
1334
|
-
lsmsvgenumtypes.c: lsmsvgenumtypes.c.template $(LASEM_SVG_HDRS) $(GLIB_MKENUMS)
|
1335
|
-
$(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template lsmsvgenumtypes.c.template $(LASEM_SVG_HDRS)) > $@
|
1336
|
-
|
1337
|
-
-include $(INTROSPECTION_MAKEFILE)
|
1338
|
-
|
1339
|
-
#Lasem-0.6.gir: $(INTROSPECTION_SCANNER) liblasem-0.6.la Makefile
|
1340
|
-
|
1341
|
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1342
|
-
# Otherwise a system limit (for SysV at least) may be exceeded.
|
1343
|
-
.NOEXPORT:
|