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,1029 +0,0 @@
|
|
1
|
-
# Makefile.in generated by automake 1.15 from Makefile.am.
|
2
|
-
# docs/reference/lasem/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
|
-
# -*- mode: makefile -*-
|
20
|
-
|
21
|
-
####################################
|
22
|
-
# Everything below here is generic #
|
23
|
-
####################################
|
24
|
-
|
25
|
-
am__is_gnu_make = { \
|
26
|
-
if test -z '$(MAKELEVEL)'; then \
|
27
|
-
false; \
|
28
|
-
elif test -n '$(MAKE_HOST)'; then \
|
29
|
-
true; \
|
30
|
-
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
31
|
-
true; \
|
32
|
-
else \
|
33
|
-
false; \
|
34
|
-
fi; \
|
35
|
-
}
|
36
|
-
am__make_running_with_option = \
|
37
|
-
case $${target_option-} in \
|
38
|
-
?) ;; \
|
39
|
-
*) echo "am__make_running_with_option: internal error: invalid" \
|
40
|
-
"target option '$${target_option-}' specified" >&2; \
|
41
|
-
exit 1;; \
|
42
|
-
esac; \
|
43
|
-
has_opt=no; \
|
44
|
-
sane_makeflags=$$MAKEFLAGS; \
|
45
|
-
if $(am__is_gnu_make); then \
|
46
|
-
sane_makeflags=$$MFLAGS; \
|
47
|
-
else \
|
48
|
-
case $$MAKEFLAGS in \
|
49
|
-
*\\[\ \ ]*) \
|
50
|
-
bs=\\; \
|
51
|
-
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
52
|
-
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
53
|
-
esac; \
|
54
|
-
fi; \
|
55
|
-
skip_next=no; \
|
56
|
-
strip_trailopt () \
|
57
|
-
{ \
|
58
|
-
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
59
|
-
}; \
|
60
|
-
for flg in $$sane_makeflags; do \
|
61
|
-
test $$skip_next = yes && { skip_next=no; continue; }; \
|
62
|
-
case $$flg in \
|
63
|
-
*=*|--*) continue;; \
|
64
|
-
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
65
|
-
-*I?*) strip_trailopt 'I';; \
|
66
|
-
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
67
|
-
-*O?*) strip_trailopt 'O';; \
|
68
|
-
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
69
|
-
-*l?*) strip_trailopt 'l';; \
|
70
|
-
-[dEDm]) skip_next=yes;; \
|
71
|
-
-[JT]) skip_next=yes;; \
|
72
|
-
esac; \
|
73
|
-
case $$flg in \
|
74
|
-
*$$target_option*) has_opt=yes; break;; \
|
75
|
-
esac; \
|
76
|
-
done; \
|
77
|
-
test $$has_opt = yes
|
78
|
-
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
79
|
-
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
80
|
-
pkgdatadir = $(datadir)/lasem
|
81
|
-
pkgincludedir = $(includedir)/lasem
|
82
|
-
pkglibdir = $(libdir)/lasem
|
83
|
-
pkglibexecdir = $(libexecdir)/lasem
|
84
|
-
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
85
|
-
install_sh_DATA = $(install_sh) -c -m 644
|
86
|
-
install_sh_PROGRAM = $(install_sh) -c
|
87
|
-
install_sh_SCRIPT = $(install_sh) -c
|
88
|
-
INSTALL_HEADER = $(INSTALL_DATA)
|
89
|
-
transform = $(program_transform_name)
|
90
|
-
NORMAL_INSTALL = :
|
91
|
-
PRE_INSTALL = :
|
92
|
-
POST_INSTALL = :
|
93
|
-
NORMAL_UNINSTALL = :
|
94
|
-
PRE_UNINSTALL = :
|
95
|
-
POST_UNINSTALL = :
|
96
|
-
build_triplet = x86_64-apple-darwin14.5.0
|
97
|
-
host_triplet = x86_64-apple-darwin14.5.0
|
98
|
-
subdir = docs/reference/lasem
|
99
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
100
|
-
am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
|
101
|
-
$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/introspection.m4 \
|
102
|
-
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
103
|
-
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
104
|
-
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
105
|
-
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
106
|
-
$(ACLOCAL_M4)
|
107
|
-
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
108
|
-
mkinstalldirs = $(install_sh) -d
|
109
|
-
CONFIG_HEADER = $(top_builddir)/config.h
|
110
|
-
CONFIG_CLEAN_FILES =
|
111
|
-
CONFIG_CLEAN_VPATH_FILES =
|
112
|
-
AM_V_P = $(am__v_P_$(V))
|
113
|
-
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
114
|
-
am__v_P_0 = false
|
115
|
-
am__v_P_1 = :
|
116
|
-
AM_V_GEN = $(am__v_GEN_$(V))
|
117
|
-
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
118
|
-
am__v_GEN_0 = @echo " GEN " $@;
|
119
|
-
am__v_GEN_1 =
|
120
|
-
AM_V_at = $(am__v_at_$(V))
|
121
|
-
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
122
|
-
am__v_at_0 = @
|
123
|
-
am__v_at_1 =
|
124
|
-
SOURCES =
|
125
|
-
DIST_SOURCES =
|
126
|
-
am__can_run_installinfo = \
|
127
|
-
case $$AM_UPDATE_INFO_DIR in \
|
128
|
-
n|no|NO) false;; \
|
129
|
-
*) (install-info --version) >/dev/null 2>&1;; \
|
130
|
-
esac
|
131
|
-
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
132
|
-
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \
|
133
|
-
$(top_srcdir)/gtk-doc.make
|
134
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
135
|
-
ACLOCAL = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing aclocal-1.15
|
136
|
-
ALL_LINGUAS =
|
137
|
-
AMTAR = $${TAR-tar}
|
138
|
-
AM_DEFAULT_VERBOSITY = 0
|
139
|
-
AR = ar
|
140
|
-
AUTOCONF = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoconf
|
141
|
-
AUTOHEADER = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoheader
|
142
|
-
AUTOMAKE = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing automake-1.15
|
143
|
-
AWK = awk
|
144
|
-
CATALOGS =
|
145
|
-
CATOBJEXT = .gmo
|
146
|
-
CC = gcc
|
147
|
-
CCDEPMODE = depmode=gcc3
|
148
|
-
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
|
149
|
-
CPP = gcc -E
|
150
|
-
CPPFLAGS =
|
151
|
-
CYGPATH_W = echo
|
152
|
-
DATADIRNAME = share
|
153
|
-
DEFS = -DHAVE_CONFIG_H
|
154
|
-
DEPDIR = .deps
|
155
|
-
DLLTOOL = false
|
156
|
-
DSYMUTIL = dsymutil
|
157
|
-
DUMPBIN =
|
158
|
-
ECHO_C = \c
|
159
|
-
ECHO_N =
|
160
|
-
ECHO_T =
|
161
|
-
EGREP = /usr/bin/grep -E
|
162
|
-
EXEEXT =
|
163
|
-
FGREP = /usr/bin/grep -F
|
164
|
-
GETTEXT_PACKAGE = lasem-0.6
|
165
|
-
GLIB_MKENUMS = /usr/local/bin/glib-mkenums
|
166
|
-
GMOFILES =
|
167
|
-
GMSGFMT = /usr/local/bin/msgfmt
|
168
|
-
GREP = /usr/bin/grep
|
169
|
-
GTKDOC_CHECK = gtkdoc-check.test
|
170
|
-
GTKDOC_CHECK_PATH = /usr/local/bin/gtkdoc-check
|
171
|
-
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
|
172
|
-
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
|
173
|
-
GTKDOC_MKPDF = /usr/local/bin/gtkdoc-mkpdf
|
174
|
-
GTKDOC_REBASE = /usr/local/bin/gtkdoc-rebase
|
175
|
-
HTML_DIR = ${datadir}/gtk-doc/html
|
176
|
-
INSTALL = /usr/bin/install -c
|
177
|
-
INSTALL_DATA = ${INSTALL} -m 644
|
178
|
-
INSTALL_PROGRAM = ${INSTALL}
|
179
|
-
INSTALL_SCRIPT = ${INSTALL}
|
180
|
-
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
181
|
-
INSTOBJEXT = .mo
|
182
|
-
INTLLIBS = -lintl
|
183
|
-
INTLTOOL_EXTRACT = /usr/local/bin/intltool-extract
|
184
|
-
INTLTOOL_MERGE = /usr/local/bin/intltool-merge
|
185
|
-
INTLTOOL_PERL = /usr/bin/perl
|
186
|
-
INTLTOOL_UPDATE = /usr/local/bin/intltool-update
|
187
|
-
INTLTOOL_V_MERGE = $(INTLTOOL__v_MERGE_$(V))
|
188
|
-
INTLTOOL_V_MERGE_OPTIONS = $(intltool__v_merge_options_$(V))
|
189
|
-
INTLTOOL__v_MERGE_ = $(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))
|
190
|
-
INTLTOOL__v_MERGE_0 = @echo " ITMRG " $@;
|
191
|
-
INTROSPECTION_CFLAGS =
|
192
|
-
INTROSPECTION_COMPILER =
|
193
|
-
INTROSPECTION_GENERATE =
|
194
|
-
INTROSPECTION_GIRDIR =
|
195
|
-
INTROSPECTION_LIBS =
|
196
|
-
INTROSPECTION_MAKEFILE =
|
197
|
-
INTROSPECTION_SCANNER =
|
198
|
-
INTROSPECTION_TYPELIBDIR =
|
199
|
-
LASEM_API_VERSION = 0.6
|
200
|
-
LASEM_API_VERSION_U = 0_6
|
201
|
-
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
|
202
|
-
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
|
203
|
-
LASEM_LIBTOOL_VERSION = 5:1:0
|
204
|
-
LD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
|
205
|
-
LDFLAGS = -L/usr/local/lib
|
206
|
-
LEX = flex
|
207
|
-
LEXLIB = -ll
|
208
|
-
LEX_OUTPUT_ROOT = lex.yy
|
209
|
-
LIBOBJS =
|
210
|
-
LIBS =
|
211
|
-
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
212
|
-
LIPO = lipo
|
213
|
-
LN_S = ln -s
|
214
|
-
LTLIBOBJS =
|
215
|
-
LT_SYS_LIBRARY_PATH =
|
216
|
-
MAINT =
|
217
|
-
MAKEINFO = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing makeinfo
|
218
|
-
MANIFEST_TOOL = :
|
219
|
-
MKDIR_P = ../../.././install-sh -c -d
|
220
|
-
MKINSTALLDIRS = ./mkinstalldirs
|
221
|
-
MSGFMT = /usr/local/bin/msgfmt
|
222
|
-
MSGFMT_OPTS = -c
|
223
|
-
MSGMERGE = /usr/local/bin/msgmerge
|
224
|
-
NM = /usr/bin/nm
|
225
|
-
NMEDIT = nmedit
|
226
|
-
OBJDUMP = false
|
227
|
-
OBJEXT = o
|
228
|
-
OTOOL = otool
|
229
|
-
OTOOL64 = :
|
230
|
-
PACKAGE = lasem
|
231
|
-
PACKAGE_BUGREPORT = http://bugzilla.gnome.org/
|
232
|
-
PACKAGE_NAME = lasem
|
233
|
-
PACKAGE_STRING = lasem 0.5.1
|
234
|
-
PACKAGE_TARNAME = lasem
|
235
|
-
PACKAGE_URL =
|
236
|
-
PACKAGE_VERSION = 0.5.1
|
237
|
-
PATH_SEPARATOR = :
|
238
|
-
PKG_CONFIG = /usr/local/bin/pkg-config
|
239
|
-
PKG_CONFIG_LIBDIR =
|
240
|
-
PKG_CONFIG_PATH = /opt/X11/lib/pkgconfig:
|
241
|
-
POFILES =
|
242
|
-
POSUB = po
|
243
|
-
PO_IN_DATADIR_FALSE =
|
244
|
-
PO_IN_DATADIR_TRUE =
|
245
|
-
RANLIB = ranlib
|
246
|
-
SED = /usr/bin/sed
|
247
|
-
SET_MAKE =
|
248
|
-
SHELL = /bin/sh
|
249
|
-
STRIP = strip
|
250
|
-
USE_NLS = yes
|
251
|
-
VERSION = 0.5.1
|
252
|
-
XGETTEXT = /usr/local/bin/xgettext
|
253
|
-
YACC = bison -y
|
254
|
-
YFLAGS =
|
255
|
-
abs_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/docs/reference/lasem
|
256
|
-
abs_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/docs/reference/lasem
|
257
|
-
abs_top_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
258
|
-
abs_top_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
259
|
-
ac_ct_AR = ar
|
260
|
-
ac_ct_CC = gcc
|
261
|
-
ac_ct_DUMPBIN =
|
262
|
-
am__include = include
|
263
|
-
am__leading_dot = .
|
264
|
-
am__quote =
|
265
|
-
am__tar = $${TAR-tar} chof - "$$tardir"
|
266
|
-
am__untar = $${TAR-tar} xf -
|
267
|
-
bindir = ${exec_prefix}/bin
|
268
|
-
build = x86_64-apple-darwin14.5.0
|
269
|
-
build_alias =
|
270
|
-
build_cpu = x86_64
|
271
|
-
build_os = darwin14.5.0
|
272
|
-
build_vendor = apple
|
273
|
-
builddir = .
|
274
|
-
datadir = ${datarootdir}
|
275
|
-
datarootdir = ${prefix}/share
|
276
|
-
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
277
|
-
dvidir = ${docdir}
|
278
|
-
exec_prefix = ${prefix}
|
279
|
-
host = x86_64-apple-darwin14.5.0
|
280
|
-
host_alias =
|
281
|
-
host_cpu = x86_64
|
282
|
-
host_os = darwin14.5.0
|
283
|
-
host_vendor = apple
|
284
|
-
htmldir = ${docdir}
|
285
|
-
includedir = ${prefix}/include
|
286
|
-
infodir = ${datarootdir}/info
|
287
|
-
install_sh = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/install-sh
|
288
|
-
intltool__v_merge_options_ = $(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))
|
289
|
-
intltool__v_merge_options_0 = -q
|
290
|
-
libdir = ${exec_prefix}/lib
|
291
|
-
libexecdir = ${exec_prefix}/libexec
|
292
|
-
localedir = ${datarootdir}/locale
|
293
|
-
localstatedir = ${prefix}/var
|
294
|
-
mandir = ${datarootdir}/man
|
295
|
-
mkdir_p = $(MKDIR_P)
|
296
|
-
oldincludedir = /usr/include
|
297
|
-
pdfdir = ${docdir}
|
298
|
-
prefix = /usr/local
|
299
|
-
program_transform_name = s,x,x,
|
300
|
-
psdir = ${docdir}
|
301
|
-
sbindir = ${exec_prefix}/sbin
|
302
|
-
sharedstatedir = ${prefix}/com
|
303
|
-
srcdir = .
|
304
|
-
sysconfdir = ${prefix}/etc
|
305
|
-
target_alias =
|
306
|
-
top_build_prefix = ../../../
|
307
|
-
top_builddir = ../../..
|
308
|
-
top_srcdir = ../../..
|
309
|
-
GTESTER = gtester
|
310
|
-
GTESTER_REPORT = gtester-report
|
311
|
-
|
312
|
-
# initialize variables for unconditional += appending
|
313
|
-
TEST_PROGS =
|
314
|
-
|
315
|
-
# We require automake 1.6 at least.
|
316
|
-
AUTOMAKE_OPTIONS = 1.6
|
317
|
-
|
318
|
-
# This is a blank Makefile.am for using gtk-doc.
|
319
|
-
# Copy this to your project's API docs directory and modify the variables to
|
320
|
-
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
|
321
|
-
# of using the various options.
|
322
|
-
|
323
|
-
# The name of the module, e.g. 'glib'.
|
324
|
-
DOC_MODULE = lasem
|
325
|
-
|
326
|
-
# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
|
327
|
-
DOC_MODULE_VERSION = 0.6
|
328
|
-
|
329
|
-
# The top-level SGML file. You can change this if you want to.
|
330
|
-
DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.xml
|
331
|
-
|
332
|
-
# Directories containing the source code, relative to $(srcdir).
|
333
|
-
# gtk-doc will search all .c and .h files beneath these paths
|
334
|
-
# for inline comments documenting functions and macros.
|
335
|
-
# e.g. DOC_SOURCE_DIR=../../../gtk ../../../gdk
|
336
|
-
DOC_SOURCE_DIR = ../../../src
|
337
|
-
|
338
|
-
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
|
339
|
-
SCANGOBJ_OPTIONS =
|
340
|
-
|
341
|
-
# Extra options to supply to gtkdoc-scan.
|
342
|
-
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
|
343
|
-
SCAN_OPTIONS =
|
344
|
-
|
345
|
-
# Extra options to supply to gtkdoc-mkdb.
|
346
|
-
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
|
347
|
-
MKDB_OPTIONS = --sgml-mode --output-format=xml
|
348
|
-
|
349
|
-
# Extra options to supply to gtkdoc-mktmpl
|
350
|
-
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
|
351
|
-
MKTMPL_OPTIONS =
|
352
|
-
|
353
|
-
# Extra options to supply to gtkdoc-mkhtml
|
354
|
-
MKHTML_OPTIONS =
|
355
|
-
|
356
|
-
# Extra options to supply to gtkdoc-fixref. Not normally needed.
|
357
|
-
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
|
358
|
-
FIXXREF_OPTIONS =
|
359
|
-
|
360
|
-
# Used for dependencies. The docs will be rebuilt if any of these change.
|
361
|
-
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
|
362
|
-
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
|
363
|
-
HFILE_GLOB = $(top_srcdir)/src/*.h
|
364
|
-
CFILE_GLOB = $(top_srcdir)/src/*.c
|
365
|
-
|
366
|
-
# Extra header to include when scanning, which are not under DOC_SOURCE_DIR
|
367
|
-
# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
|
368
|
-
EXTRA_HFILES =
|
369
|
-
|
370
|
-
# Header files to ignore when scanning. Use base file name, no paths
|
371
|
-
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
|
372
|
-
IGNORE_HFILES = \
|
373
|
-
lsmdomenumtypes.h \
|
374
|
-
lsmmathmlenumtypes.h \
|
375
|
-
lsmsvgenumtypes.h \
|
376
|
-
lsmconfig.h \
|
377
|
-
lsm.h \
|
378
|
-
lsmcairo.h \
|
379
|
-
lsmstr.h \
|
380
|
-
lsmdebug.h \
|
381
|
-
lsmtraits.h \
|
382
|
-
lsmproperties.h \
|
383
|
-
lsmattributes.h \
|
384
|
-
lsmitex.h \
|
385
|
-
lsmmathml.h \
|
386
|
-
lsmmathmltypes.h \
|
387
|
-
lsmmathmlenums.h \
|
388
|
-
lsmmathmltraits.h \
|
389
|
-
lsmmathmlattributes.h \
|
390
|
-
lsmmathmloperatordictionary.h \
|
391
|
-
lsmmathmldocument.h \
|
392
|
-
lsmmathmlelement.h \
|
393
|
-
lsmmathmlphantomelement.h \
|
394
|
-
lsmmathmlmathelement.h \
|
395
|
-
lsmmathmltableelement.h \
|
396
|
-
lsmmathmltablerowelement.h \
|
397
|
-
lsmmathmlencloseelement.h \
|
398
|
-
lsmmathmltablecellelement.h \
|
399
|
-
lsmmathmlspaceelement.h \
|
400
|
-
lsmmathmlradicalelement.h \
|
401
|
-
lsmmathmlscriptelement.h \
|
402
|
-
lsmmathmlfractionelement.h \
|
403
|
-
lsmmathmlunderoverelement.h \
|
404
|
-
lsmmathmlpresentationtoken.h \
|
405
|
-
lsmmathmloperatorelement.h \
|
406
|
-
lsmmathmlstringelement.h \
|
407
|
-
lsmmathmlpresentationcontainer.h \
|
408
|
-
lsmmathmlstyleelement.h \
|
409
|
-
lsmmathmlrowelement.h \
|
410
|
-
lsmmathmlfencedelement.h \
|
411
|
-
lsmmathmlpaddedelement.h \
|
412
|
-
lsmmathmlerrorelement.h \
|
413
|
-
lsmmathmlactionelement.h \
|
414
|
-
lsmmathmlstyle.h \
|
415
|
-
lsmmathmlview.h \
|
416
|
-
lsmmathmlglyphtableams.h \
|
417
|
-
lsmmathmlalignmarkelement.h \
|
418
|
-
lsmmathmlaligngroupelement.h \
|
419
|
-
lsmmathmlsemanticselement.h \
|
420
|
-
lsmmathmlitexelement.h \
|
421
|
-
lsmmathmlutils.h \
|
422
|
-
lsmmathmllayoututils.h \
|
423
|
-
lsmsvg.h \
|
424
|
-
lsmsvgtypes.h \
|
425
|
-
lsmsvgenums.h \
|
426
|
-
lsmsvgtraits.h \
|
427
|
-
lsmsvgattributes.h \
|
428
|
-
lsmsvgstyle.h \
|
429
|
-
lsmsvgcolors.h \
|
430
|
-
lsmsvglength.h \
|
431
|
-
lsmsvgview.h \
|
432
|
-
lsmsvgmatrix.h \
|
433
|
-
lsmsvgdocument.h \
|
434
|
-
lsmsvgelement.h \
|
435
|
-
lsmsvgclippathelement.h \
|
436
|
-
lsmsvgsvgelement.h \
|
437
|
-
lsmsvgtransformable.h \
|
438
|
-
lsmsvgaelement.h \
|
439
|
-
lsmsvggelement.h \
|
440
|
-
lsmsvgdefselement.h \
|
441
|
-
lsmsvguseelement.h \
|
442
|
-
lsmsvgimageelement.h \
|
443
|
-
lsmsvgsymbolelement.h \
|
444
|
-
lsmsvgmarkerelement.h \
|
445
|
-
lsmsvgrectelement.h \
|
446
|
-
lsmsvgcircleelement.h \
|
447
|
-
lsmsvgellipseelement.h \
|
448
|
-
lsmsvglineelement.h \
|
449
|
-
lsmsvgpathelement.h \
|
450
|
-
lsmsvgpolylineelement.h \
|
451
|
-
lsmsvgpolygonelement.h \
|
452
|
-
lsmsvgtextelement.h \
|
453
|
-
lsmsvgtspanelement.h \
|
454
|
-
lsmsvggradientelement.h \
|
455
|
-
lsmsvglineargradientelement.h \
|
456
|
-
lsmsvgradialgradientelement.h \
|
457
|
-
lsmsvgstopelement.h \
|
458
|
-
lsmsvgswitchelement.h \
|
459
|
-
lsmsvgpatternelement.h \
|
460
|
-
lsmsvgmaskelement.h \
|
461
|
-
lsmsvgfilterelement.h \
|
462
|
-
lsmsvgfilterprimitive.h \
|
463
|
-
lsmsvgfilterblend.h \
|
464
|
-
lsmsvgfiltercolormatrix.h \
|
465
|
-
lsmsvgfiltercomposite.h \
|
466
|
-
lsmsvgfilterconvolvematrix.h \
|
467
|
-
lsmsvgfilterdisplacementmap.h \
|
468
|
-
lsmsvgfilterflood.h \
|
469
|
-
lsmsvgfiltergaussianblur.h \
|
470
|
-
lsmsvgfilterimage.h \
|
471
|
-
lsmsvgfilteroffset.h \
|
472
|
-
lsmsvgfiltermerge.h \
|
473
|
-
lsmsvgfiltermergenode.h \
|
474
|
-
lsmsvgfiltermorphology.h \
|
475
|
-
lsmsvgfilterspecularlighting.h \
|
476
|
-
lsmsvgfiltertile.h \
|
477
|
-
lsmsvgfilterturbulence.h \
|
478
|
-
lsmsvgfiltersurface.h
|
479
|
-
|
480
|
-
|
481
|
-
# Images to copy into HTML directory.
|
482
|
-
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
|
483
|
-
HTML_IMAGES =
|
484
|
-
|
485
|
-
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
|
486
|
-
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
|
487
|
-
content_files = \
|
488
|
-
lasem-overview.xml
|
489
|
-
|
490
|
-
|
491
|
-
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
|
492
|
-
# These files must be listed here *and* in content_files
|
493
|
-
# e.g. expand_content_files=running.sgml
|
494
|
-
expand_content_files = \
|
495
|
-
lasem-overview.xml
|
496
|
-
|
497
|
-
|
498
|
-
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
|
499
|
-
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
|
500
|
-
# signals and properties.
|
501
|
-
# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
|
502
|
-
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
|
503
|
-
GTKDOC_CFLAGS = -I$(top_srcdir)/src $(LASEM_CFLAGS)
|
504
|
-
GTKDOC_LIBS = $(top_builddir)/src/liblasem-0.6.la $(LASEM_LIBS)
|
505
|
-
#GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
506
|
-
GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
507
|
-
#GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
|
508
|
-
GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
|
509
|
-
#GTKDOC_RUN =
|
510
|
-
GTKDOC_RUN = $(LIBTOOL) --mode=execute
|
511
|
-
|
512
|
-
# We set GPATH here; this gives us semantics for GNU make
|
513
|
-
# which are more like other make's VPATH, when it comes to
|
514
|
-
# whether a source that is a target of one rule is then
|
515
|
-
# searched for in VPATH/GPATH.
|
516
|
-
#
|
517
|
-
GPATH = $(srcdir)
|
518
|
-
TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
|
519
|
-
SETUP_FILES = \
|
520
|
-
$(content_files) \
|
521
|
-
$(expand_content_files) \
|
522
|
-
$(DOC_MAIN_SGML_FILE) \
|
523
|
-
$(DOC_MODULE)-sections.txt \
|
524
|
-
$(DOC_MODULE)-overrides.txt
|
525
|
-
|
526
|
-
|
527
|
-
# This includes the standard gtk-doc make rules, copied by gtkdocize.
|
528
|
-
|
529
|
-
# Other files to distribute
|
530
|
-
# e.g. EXTRA_DIST += version.xml.in
|
531
|
-
EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES)
|
532
|
-
DOC_STAMPS = setup-build.stamp scan-build.stamp sgml-build.stamp \
|
533
|
-
html-build.stamp pdf-build.stamp \
|
534
|
-
sgml.stamp html.stamp pdf.stamp
|
535
|
-
|
536
|
-
SCANOBJ_FILES = \
|
537
|
-
$(DOC_MODULE).args \
|
538
|
-
$(DOC_MODULE).hierarchy \
|
539
|
-
$(DOC_MODULE).interfaces \
|
540
|
-
$(DOC_MODULE).prerequisites \
|
541
|
-
$(DOC_MODULE).signals
|
542
|
-
|
543
|
-
REPORT_FILES = \
|
544
|
-
$(DOC_MODULE)-undocumented.txt \
|
545
|
-
$(DOC_MODULE)-undeclared.txt \
|
546
|
-
$(DOC_MODULE)-unused.txt
|
547
|
-
|
548
|
-
CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
|
549
|
-
#HTML_BUILD_STAMP =
|
550
|
-
HTML_BUILD_STAMP = html-build.stamp
|
551
|
-
PDF_BUILD_STAMP =
|
552
|
-
#PDF_BUILD_STAMP = pdf-build.stamp
|
553
|
-
|
554
|
-
#### setup ####
|
555
|
-
GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_$(V))
|
556
|
-
GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY))
|
557
|
-
GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build";
|
558
|
-
|
559
|
-
#### scan ####
|
560
|
-
GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_$(V))
|
561
|
-
GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY))
|
562
|
-
GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files";
|
563
|
-
GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_$(V))
|
564
|
-
GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY))
|
565
|
-
GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects";
|
566
|
-
|
567
|
-
#### xml ####
|
568
|
-
GTK_DOC_V_XML = $(GTK_DOC_V_XML_$(V))
|
569
|
-
GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY))
|
570
|
-
GTK_DOC_V_XML_0 = @echo " DOC Building XML";
|
571
|
-
|
572
|
-
#### html ####
|
573
|
-
GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_$(V))
|
574
|
-
GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY))
|
575
|
-
GTK_DOC_V_HTML_0 = @echo " DOC Building HTML";
|
576
|
-
GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_$(V))
|
577
|
-
GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY))
|
578
|
-
GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references";
|
579
|
-
|
580
|
-
#### pdf ####
|
581
|
-
GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_$(V))
|
582
|
-
GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY))
|
583
|
-
GTK_DOC_V_PDF_0 = @echo " DOC Building PDF";
|
584
|
-
all: all-am
|
585
|
-
|
586
|
-
.SUFFIXES:
|
587
|
-
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__configure_deps)
|
588
|
-
@for dep in $?; do \
|
589
|
-
case '$(am__configure_deps)' in \
|
590
|
-
*$$dep*) \
|
591
|
-
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
592
|
-
&& { if test -f $@; then exit 0; else break; fi; }; \
|
593
|
-
exit 1;; \
|
594
|
-
esac; \
|
595
|
-
done; \
|
596
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/lasem/Makefile'; \
|
597
|
-
$(am__cd) $(top_srcdir) && \
|
598
|
-
$(AUTOMAKE) --gnu docs/reference/lasem/Makefile
|
599
|
-
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
600
|
-
@case '$?' in \
|
601
|
-
*config.status*) \
|
602
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
603
|
-
*) \
|
604
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
605
|
-
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
606
|
-
esac;
|
607
|
-
$(top_srcdir)/Makefile.decl $(top_srcdir)/gtk-doc.make $(am__empty):
|
608
|
-
|
609
|
-
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
610
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
611
|
-
|
612
|
-
$(top_srcdir)/configure: $(am__configure_deps)
|
613
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
614
|
-
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
615
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
616
|
-
$(am__aclocal_m4_deps):
|
617
|
-
|
618
|
-
mostlyclean-libtool:
|
619
|
-
-rm -f *.lo
|
620
|
-
|
621
|
-
clean-libtool:
|
622
|
-
-rm -rf .libs _libs
|
623
|
-
tags TAGS:
|
624
|
-
|
625
|
-
ctags CTAGS:
|
626
|
-
|
627
|
-
cscope cscopelist:
|
628
|
-
|
629
|
-
|
630
|
-
distdir: $(DISTFILES)
|
631
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
632
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
633
|
-
list='$(DISTFILES)'; \
|
634
|
-
dist_files=`for file in $$list; do echo $$file; done | \
|
635
|
-
sed -e "s|^$$srcdirstrip/||;t" \
|
636
|
-
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
637
|
-
case $$dist_files in \
|
638
|
-
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
639
|
-
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
640
|
-
sort -u` ;; \
|
641
|
-
esac; \
|
642
|
-
for file in $$dist_files; do \
|
643
|
-
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
644
|
-
if test -d $$d/$$file; then \
|
645
|
-
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
646
|
-
if test -d "$(distdir)/$$file"; then \
|
647
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
648
|
-
fi; \
|
649
|
-
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
650
|
-
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
651
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
652
|
-
fi; \
|
653
|
-
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
654
|
-
else \
|
655
|
-
test -f "$(distdir)/$$file" \
|
656
|
-
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
657
|
-
|| exit 1; \
|
658
|
-
fi; \
|
659
|
-
done
|
660
|
-
$(MAKE) $(AM_MAKEFLAGS) \
|
661
|
-
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
662
|
-
dist-hook
|
663
|
-
check-am: all-am
|
664
|
-
$(MAKE) $(AM_MAKEFLAGS) check-local
|
665
|
-
check: check-am
|
666
|
-
all-local:
|
667
|
-
all-am: Makefile all-local
|
668
|
-
installdirs:
|
669
|
-
install: install-am
|
670
|
-
install-exec: install-exec-am
|
671
|
-
install-data: install-data-am
|
672
|
-
uninstall: uninstall-am
|
673
|
-
|
674
|
-
install-am: all-am
|
675
|
-
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
676
|
-
|
677
|
-
installcheck: installcheck-am
|
678
|
-
install-strip:
|
679
|
-
if test -z '$(STRIP)'; then \
|
680
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
681
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
682
|
-
install; \
|
683
|
-
else \
|
684
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
685
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
686
|
-
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
687
|
-
fi
|
688
|
-
mostlyclean-generic:
|
689
|
-
|
690
|
-
clean-generic:
|
691
|
-
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
692
|
-
|
693
|
-
distclean-generic:
|
694
|
-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
695
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
696
|
-
|
697
|
-
maintainer-clean-generic:
|
698
|
-
@echo "This command is intended for maintainers to use"
|
699
|
-
@echo "it deletes files that may require special tools to rebuild."
|
700
|
-
clean: clean-am
|
701
|
-
|
702
|
-
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
703
|
-
|
704
|
-
distclean: distclean-am
|
705
|
-
-rm -f Makefile
|
706
|
-
distclean-am: clean-am distclean-generic distclean-local
|
707
|
-
|
708
|
-
dvi: dvi-am
|
709
|
-
|
710
|
-
dvi-am:
|
711
|
-
|
712
|
-
html: html-am
|
713
|
-
|
714
|
-
html-am:
|
715
|
-
|
716
|
-
info: info-am
|
717
|
-
|
718
|
-
info-am:
|
719
|
-
|
720
|
-
install-data-am: install-data-local
|
721
|
-
|
722
|
-
install-dvi: install-dvi-am
|
723
|
-
|
724
|
-
install-dvi-am:
|
725
|
-
|
726
|
-
install-exec-am:
|
727
|
-
|
728
|
-
install-html: install-html-am
|
729
|
-
|
730
|
-
install-html-am:
|
731
|
-
|
732
|
-
install-info: install-info-am
|
733
|
-
|
734
|
-
install-info-am:
|
735
|
-
|
736
|
-
install-man:
|
737
|
-
|
738
|
-
install-pdf: install-pdf-am
|
739
|
-
|
740
|
-
install-pdf-am:
|
741
|
-
|
742
|
-
install-ps: install-ps-am
|
743
|
-
|
744
|
-
install-ps-am:
|
745
|
-
|
746
|
-
installcheck-am:
|
747
|
-
|
748
|
-
maintainer-clean: maintainer-clean-am
|
749
|
-
-rm -f Makefile
|
750
|
-
maintainer-clean-am: distclean-am maintainer-clean-generic \
|
751
|
-
maintainer-clean-local
|
752
|
-
|
753
|
-
mostlyclean: mostlyclean-am
|
754
|
-
|
755
|
-
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
756
|
-
|
757
|
-
pdf: pdf-am
|
758
|
-
|
759
|
-
pdf-am:
|
760
|
-
|
761
|
-
ps: ps-am
|
762
|
-
|
763
|
-
ps-am:
|
764
|
-
|
765
|
-
uninstall-am: uninstall-local
|
766
|
-
|
767
|
-
.MAKE: check-am install-am install-strip
|
768
|
-
|
769
|
-
.PHONY: all all-am all-local check check-am check-local clean \
|
770
|
-
clean-generic clean-libtool clean-local cscopelist-am ctags-am \
|
771
|
-
dist-hook distclean distclean-generic distclean-libtool \
|
772
|
-
distclean-local distdir dvi dvi-am html html-am info info-am \
|
773
|
-
install install-am install-data install-data-am \
|
774
|
-
install-data-local install-dvi install-dvi-am install-exec \
|
775
|
-
install-exec-am install-html install-html-am install-info \
|
776
|
-
install-info-am install-man install-pdf install-pdf-am \
|
777
|
-
install-ps install-ps-am install-strip installcheck \
|
778
|
-
installcheck-am installdirs maintainer-clean \
|
779
|
-
maintainer-clean-generic maintainer-clean-local mostlyclean \
|
780
|
-
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
781
|
-
tags-am uninstall uninstall-am uninstall-local
|
782
|
-
|
783
|
-
.PRECIOUS: Makefile
|
784
|
-
|
785
|
-
|
786
|
-
### testing rules
|
787
|
-
|
788
|
-
# test: run all tests in cwd and subdirs
|
789
|
-
test: ${TEST_PROGS}
|
790
|
-
@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
|
791
|
-
@ for subdir in $(SUBDIRS) . ; do \
|
792
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
793
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
794
|
-
done
|
795
|
-
|
796
|
-
# test-report: run tests in subdirs and generate report
|
797
|
-
# perf-report: run tests in subdirs with -m perf and generate report
|
798
|
-
# full-report: like test-report: with -m perf and -m slow
|
799
|
-
test-report perf-report full-report: ${TEST_PROGS}
|
800
|
-
@test -z "${TEST_PROGS}" || { \
|
801
|
-
case $@ in \
|
802
|
-
test-report) test_options="-k";; \
|
803
|
-
perf-report) test_options="-k -m=perf";; \
|
804
|
-
full-report) test_options="-k -m=perf -m=slow";; \
|
805
|
-
esac ; \
|
806
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
807
|
-
${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
|
808
|
-
elif test -n "${TEST_PROGS}" ; then \
|
809
|
-
${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
|
810
|
-
fi ; \
|
811
|
-
}
|
812
|
-
@ ignore_logdir=true ; \
|
813
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
814
|
-
GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
|
815
|
-
ignore_logdir=false ; \
|
816
|
-
fi ; \
|
817
|
-
for subdir in $(SUBDIRS) . ; do \
|
818
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
819
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
820
|
-
done ; \
|
821
|
-
$$ignore_logdir || { \
|
822
|
-
echo '<?xml version="1.0"?>' > $@.xml ; \
|
823
|
-
echo '<report-collection>' >> $@.xml ; \
|
824
|
-
for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
|
825
|
-
sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
|
826
|
-
done ; \
|
827
|
-
echo >> $@.xml ; \
|
828
|
-
echo '</report-collection>' >> $@.xml ; \
|
829
|
-
rm -rf "$$GTESTER_LOGDIR"/ ; \
|
830
|
-
${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
|
831
|
-
}
|
832
|
-
.PHONY: test test-report perf-report full-report
|
833
|
-
# run make test as part of make check
|
834
|
-
check-local: test
|
835
|
-
|
836
|
-
gtkdoc-check.test: Makefile
|
837
|
-
$(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
|
838
|
-
echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
|
839
|
-
chmod +x $@
|
840
|
-
|
841
|
-
all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
|
842
|
-
.PHONY: all-gtk-doc
|
843
|
-
|
844
|
-
#all-local: all-gtk-doc
|
845
|
-
|
846
|
-
docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
|
847
|
-
|
848
|
-
$(REPORT_FILES): sgml-build.stamp
|
849
|
-
|
850
|
-
setup-build.stamp:
|
851
|
-
-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
|
852
|
-
files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
|
853
|
-
if test "x$$files" != "x" ; then \
|
854
|
-
for file in $$files ; do \
|
855
|
-
destdir=`dirname $(abs_builddir)/$$file`; \
|
856
|
-
test -d "$$destdir" || mkdir -p "$$destdir"; \
|
857
|
-
test -f $(abs_srcdir)/$$file && \
|
858
|
-
cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
|
859
|
-
done; \
|
860
|
-
fi; \
|
861
|
-
fi
|
862
|
-
$(AM_V_at)touch setup-build.stamp
|
863
|
-
|
864
|
-
scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
|
865
|
-
$(GTK_DOC_V_SCAN)_source_dir='' ; \
|
866
|
-
for i in $(DOC_SOURCE_DIR) ; do \
|
867
|
-
_source_dir="$${_source_dir} --source-dir=$$i" ; \
|
868
|
-
done ; \
|
869
|
-
gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
|
870
|
-
$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
|
871
|
-
scanobj_options=""; \
|
872
|
-
gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
873
|
-
if test "$$?" = "0"; then \
|
874
|
-
if test "x$(V)" = "x1"; then \
|
875
|
-
scanobj_options="--verbose"; \
|
876
|
-
fi; \
|
877
|
-
fi; \
|
878
|
-
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
|
879
|
-
gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
|
880
|
-
else \
|
881
|
-
for i in $(SCANOBJ_FILES) ; do \
|
882
|
-
test -f $$i || touch $$i ; \
|
883
|
-
done \
|
884
|
-
fi
|
885
|
-
$(AM_V_at)touch scan-build.stamp
|
886
|
-
|
887
|
-
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
|
888
|
-
@true
|
889
|
-
|
890
|
-
sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files)
|
891
|
-
$(GTK_DOC_V_XML)_source_dir='' ; \
|
892
|
-
for i in $(DOC_SOURCE_DIR) ; do \
|
893
|
-
_source_dir="$${_source_dir} --source-dir=$$i" ; \
|
894
|
-
done ; \
|
895
|
-
gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
|
896
|
-
$(AM_V_at)touch sgml-build.stamp
|
897
|
-
|
898
|
-
sgml.stamp: sgml-build.stamp
|
899
|
-
@true
|
900
|
-
|
901
|
-
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
|
902
|
-
$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
|
903
|
-
mkhtml_options=""; \
|
904
|
-
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
905
|
-
if test "$$?" = "0"; then \
|
906
|
-
if test "x$(V)" = "x1"; then \
|
907
|
-
mkhtml_options="$$mkhtml_options --verbose"; \
|
908
|
-
fi; \
|
909
|
-
fi; \
|
910
|
-
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
|
911
|
-
if test "$$?" = "0"; then \
|
912
|
-
mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
|
913
|
-
fi; \
|
914
|
-
cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
915
|
-
-@test "x$(HTML_IMAGES)" = "x" || \
|
916
|
-
for file in $(HTML_IMAGES) ; do \
|
917
|
-
if test -f $(abs_srcdir)/$$file ; then \
|
918
|
-
cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
|
919
|
-
fi; \
|
920
|
-
if test -f $(abs_builddir)/$$file ; then \
|
921
|
-
cp $(abs_builddir)/$$file $(abs_builddir)/html; \
|
922
|
-
fi; \
|
923
|
-
done;
|
924
|
-
$(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
|
925
|
-
$(AM_V_at)touch html-build.stamp
|
926
|
-
|
927
|
-
pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
|
928
|
-
$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
|
929
|
-
mkpdf_options=""; \
|
930
|
-
gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
931
|
-
if test "$$?" = "0"; then \
|
932
|
-
if test "x$(V)" = "x1"; then \
|
933
|
-
mkpdf_options="$$mkpdf_options --verbose"; \
|
934
|
-
fi; \
|
935
|
-
fi; \
|
936
|
-
if test "x$(HTML_IMAGES)" != "x"; then \
|
937
|
-
for img in $(HTML_IMAGES); do \
|
938
|
-
part=`dirname $$img`; \
|
939
|
-
echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \
|
940
|
-
if test $$? != 0; then \
|
941
|
-
mkpdf_options="$$mkpdf_options --imgdir=$$part"; \
|
942
|
-
fi; \
|
943
|
-
done; \
|
944
|
-
fi; \
|
945
|
-
gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
|
946
|
-
$(AM_V_at)touch pdf-build.stamp
|
947
|
-
|
948
|
-
##############
|
949
|
-
|
950
|
-
clean-local:
|
951
|
-
@rm -f *~ *.bak
|
952
|
-
@rm -rf .libs
|
953
|
-
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
|
954
|
-
rm -f $(DOC_MODULE).types; \
|
955
|
-
fi
|
956
|
-
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
|
957
|
-
rm -f $(DOC_MODULE)-sections.txt; \
|
958
|
-
fi
|
959
|
-
|
960
|
-
distclean-local:
|
961
|
-
@rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
|
962
|
-
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
963
|
-
@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
|
964
|
-
rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
|
965
|
-
fi
|
966
|
-
|
967
|
-
maintainer-clean-local:
|
968
|
-
@rm -rf xml html
|
969
|
-
|
970
|
-
install-data-local:
|
971
|
-
@installfiles=`echo $(builddir)/html/*`; \
|
972
|
-
if test "$$installfiles" = '$(builddir)/html/*'; \
|
973
|
-
then echo 1>&2 'Nothing to install' ; \
|
974
|
-
else \
|
975
|
-
if test -n "$(DOC_MODULE_VERSION)"; then \
|
976
|
-
installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
|
977
|
-
else \
|
978
|
-
installdir="$(DESTDIR)$(TARGET_DIR)"; \
|
979
|
-
fi; \
|
980
|
-
$(mkinstalldirs) $${installdir} ; \
|
981
|
-
for i in $$installfiles; do \
|
982
|
-
echo ' $(INSTALL_DATA) '$$i ; \
|
983
|
-
$(INSTALL_DATA) $$i $${installdir}; \
|
984
|
-
done; \
|
985
|
-
if test -n "$(DOC_MODULE_VERSION)"; then \
|
986
|
-
mv -f $${installdir}/$(DOC_MODULE).devhelp2 \
|
987
|
-
$${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \
|
988
|
-
fi; \
|
989
|
-
$(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \
|
990
|
-
fi
|
991
|
-
|
992
|
-
uninstall-local:
|
993
|
-
@if test -n "$(DOC_MODULE_VERSION)"; then \
|
994
|
-
installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
|
995
|
-
else \
|
996
|
-
installdir="$(DESTDIR)$(TARGET_DIR)"; \
|
997
|
-
fi; \
|
998
|
-
rm -rf $${installdir}
|
999
|
-
|
1000
|
-
#
|
1001
|
-
# Require gtk-doc when making dist
|
1002
|
-
#
|
1003
|
-
dist-check-gtkdoc: docs
|
1004
|
-
#dist-check-gtkdoc:
|
1005
|
-
# @echo "*** gtk-doc is needed to run 'make dist'. ***"
|
1006
|
-
# @echo "*** gtk-doc was not found when 'configure' ran. ***"
|
1007
|
-
# @echo "*** please install gtk-doc and rerun 'configure'. ***"
|
1008
|
-
# @false
|
1009
|
-
|
1010
|
-
dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
|
1011
|
-
@mkdir $(distdir)/html
|
1012
|
-
@cp ./html/* $(distdir)/html
|
1013
|
-
@-cp ./$(DOC_MODULE).pdf $(distdir)/
|
1014
|
-
@-cp ./$(DOC_MODULE).types $(distdir)/
|
1015
|
-
@-cp ./$(DOC_MODULE)-sections.txt $(distdir)/
|
1016
|
-
@cd $(distdir) && rm -f $(DISTCLEANFILES)
|
1017
|
-
@$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
|
1018
|
-
|
1019
|
-
.PHONY : dist-hook-local docs
|
1020
|
-
|
1021
|
-
# Files not to distribute
|
1022
|
-
# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
|
1023
|
-
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
|
1024
|
-
|
1025
|
-
#TESTS = $(GTKDOC_CHECK)
|
1026
|
-
|
1027
|
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1028
|
-
# Otherwise a system limit (for SysV at least) may be exceeded.
|
1029
|
-
.NOEXPORT:
|