mathematical 1.2.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -45
  3. data/Rakefile +6 -0
  4. data/ext/mathematical/extconf.rb +1 -1
  5. data/ext/mathematical/lasem/Makefile +1037 -0
  6. data/ext/mathematical/lasem/config.h +87 -0
  7. data/ext/mathematical/lasem/docs/Makefile +793 -0
  8. data/ext/mathematical/lasem/docs/reference/Makefile +735 -0
  9. data/ext/mathematical/lasem/docs/reference/lasem/Makefile +1023 -0
  10. data/ext/mathematical/lasem/itex2mml/Makefile +742 -0
  11. data/ext/mathematical/lasem/itex2mml/lex.yy.c +6294 -0
  12. data/ext/mathematical/lasem/itex2mml/y.tab.c +5796 -0
  13. data/ext/mathematical/lasem/itex2mml/y.tab.h +378 -0
  14. data/ext/mathematical/lasem/po/Makefile +413 -0
  15. data/ext/mathematical/lasem/src/Makefile +1322 -0
  16. data/ext/mathematical/lasem/src/lsmdomenumtypes.c +99 -0
  17. data/ext/mathematical/lasem/src/lsmdomenumtypes.h +26 -0
  18. data/ext/mathematical/lasem/src/lsmmathmlattributes.c +22 -0
  19. data/ext/mathematical/lasem/src/lsmmathmlenums.c +8 -0
  20. data/ext/mathematical/lasem/src/lsmmathmlenums.h +7 -0
  21. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +737 -0
  22. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +93 -0
  23. data/ext/mathematical/lasem/src/lsmmathmlmathelement.c +9 -1
  24. data/ext/mathematical/lasem/src/lsmmathmlstyle.h +8 -0
  25. data/ext/mathematical/lasem/src/lsmmathmlstyleelement.c +78 -0
  26. data/ext/mathematical/lasem/src/lsmmathmlstyleelement.h +7 -0
  27. data/ext/mathematical/lasem/src/lsmmathmltablerowelement.c +2 -2
  28. data/ext/mathematical/lasem/src/lsmmathmltraits.h +8 -0
  29. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +1083 -0
  30. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +111 -0
  31. data/ext/mathematical/lasem/tests/Makefile +765 -0
  32. data/ext/mathematical/mtex2MML/Makefile +25 -16
  33. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  34. data/ext/mathematical/mtex2MML/build/mtex2MML.h +1 -1
  35. data/ext/mathematical/mtex2MML/src/lex.yy.c +3140 -3130
  36. data/ext/mathematical/mtex2MML/src/main.c +1 -1
  37. data/ext/mathematical/mtex2MML/src/mtex2MML.h +1 -1
  38. data/ext/mathematical/mtex2MML/src/mtex2MML.l +4 -1
  39. data/ext/mathematical/mtex2MML/src/mtex2MML.y +41 -42
  40. data/ext/mathematical/mtex2MML/src/parse_extras.c +148 -58
  41. data/ext/mathematical/mtex2MML/src/parse_extras.h +11 -3
  42. data/ext/mathematical/mtex2MML/src/y.tab.c +5902 -6075
  43. data/ext/mathematical/mtex2MML/src/y.tab.h +306 -313
  44. data/ext/mathematical/mtex2MML/tests/basic.c +2 -2
  45. data/ext/mathematical/mtex2MML/tests/deps/trim/trim.h +1 -1
  46. data/ext/mathematical/mtex2MML/tests/maliciousness.c +0 -1
  47. data/ext/mathematical/mtex2MML/tests/mathjax.c +11 -1
  48. data/ext/mathematical/mtex2MML/tests/numbered_equations.c +28 -1
  49. data/lib/mathematical/version.rb +1 -1
  50. data/mathematical.gemspec +3 -3
  51. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  52. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  53. data/test/mathematical/fixtures_test.rb +1 -6
  54. data/test/mathematical/mathjax_test.rb +2 -0
  55. data/test/test_helper.rb +10 -0
  56. metadata +28 -11
@@ -0,0 +1,735 @@
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
+ # docs/reference/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
+ am__is_gnu_make = { \
20
+ if test -z '$(MAKELEVEL)'; then \
21
+ false; \
22
+ elif test -n '$(MAKE_HOST)'; then \
23
+ true; \
24
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
25
+ true; \
26
+ else \
27
+ false; \
28
+ fi; \
29
+ }
30
+ am__make_running_with_option = \
31
+ case $${target_option-} in \
32
+ ?) ;; \
33
+ *) echo "am__make_running_with_option: internal error: invalid" \
34
+ "target option '$${target_option-}' specified" >&2; \
35
+ exit 1;; \
36
+ esac; \
37
+ has_opt=no; \
38
+ sane_makeflags=$$MAKEFLAGS; \
39
+ if $(am__is_gnu_make); then \
40
+ sane_makeflags=$$MFLAGS; \
41
+ else \
42
+ case $$MAKEFLAGS in \
43
+ *\\[\ \ ]*) \
44
+ bs=\\; \
45
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
46
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
47
+ esac; \
48
+ fi; \
49
+ skip_next=no; \
50
+ strip_trailopt () \
51
+ { \
52
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
53
+ }; \
54
+ for flg in $$sane_makeflags; do \
55
+ test $$skip_next = yes && { skip_next=no; continue; }; \
56
+ case $$flg in \
57
+ *=*|--*) continue;; \
58
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
59
+ -*I?*) strip_trailopt 'I';; \
60
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
61
+ -*O?*) strip_trailopt 'O';; \
62
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
63
+ -*l?*) strip_trailopt 'l';; \
64
+ -[dEDm]) skip_next=yes;; \
65
+ -[JT]) skip_next=yes;; \
66
+ esac; \
67
+ case $$flg in \
68
+ *$$target_option*) has_opt=yes; break;; \
69
+ esac; \
70
+ done; \
71
+ test $$has_opt = yes
72
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
73
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
74
+ pkgdatadir = $(datadir)/lasem
75
+ pkgincludedir = $(includedir)/lasem
76
+ pkglibdir = $(libdir)/lasem
77
+ pkglibexecdir = $(libexecdir)/lasem
78
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
79
+ install_sh_DATA = $(install_sh) -c -m 644
80
+ install_sh_PROGRAM = $(install_sh) -c
81
+ install_sh_SCRIPT = $(install_sh) -c
82
+ INSTALL_HEADER = $(INSTALL_DATA)
83
+ transform = $(program_transform_name)
84
+ NORMAL_INSTALL = :
85
+ PRE_INSTALL = :
86
+ POST_INSTALL = :
87
+ NORMAL_UNINSTALL = :
88
+ PRE_UNINSTALL = :
89
+ POST_UNINSTALL = :
90
+ build_triplet = x86_64-apple-darwin14.3.0
91
+ host_triplet = x86_64-apple-darwin14.3.0
92
+ subdir = docs/reference
93
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
94
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
95
+ $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/introspection.m4 \
96
+ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
97
+ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
98
+ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
99
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
100
+ $(ACLOCAL_M4)
101
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
102
+ mkinstalldirs = $(install_sh) -d
103
+ CONFIG_HEADER = $(top_builddir)/config.h
104
+ CONFIG_CLEAN_FILES =
105
+ CONFIG_CLEAN_VPATH_FILES =
106
+ AM_V_P = $(am__v_P_$(V))
107
+ am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
108
+ am__v_P_0 = false
109
+ am__v_P_1 = :
110
+ AM_V_GEN = $(am__v_GEN_$(V))
111
+ am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
112
+ am__v_GEN_0 = @echo " GEN " $@;
113
+ am__v_GEN_1 =
114
+ AM_V_at = $(am__v_at_$(V))
115
+ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
116
+ am__v_at_0 = @
117
+ am__v_at_1 =
118
+ SOURCES =
119
+ DIST_SOURCES =
120
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
121
+ ctags-recursive dvi-recursive html-recursive info-recursive \
122
+ install-data-recursive install-dvi-recursive \
123
+ install-exec-recursive install-html-recursive \
124
+ install-info-recursive install-pdf-recursive \
125
+ install-ps-recursive install-recursive installcheck-recursive \
126
+ installdirs-recursive pdf-recursive ps-recursive \
127
+ tags-recursive uninstall-recursive
128
+ am__can_run_installinfo = \
129
+ case $$AM_UPDATE_INFO_DIR in \
130
+ n|no|NO) false;; \
131
+ *) (install-info --version) >/dev/null 2>&1;; \
132
+ esac
133
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
134
+ distclean-recursive maintainer-clean-recursive
135
+ am__recursive_targets = \
136
+ $(RECURSIVE_TARGETS) \
137
+ $(RECURSIVE_CLEAN_TARGETS) \
138
+ $(am__extra_recursive_targets)
139
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
140
+ distdir
141
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
142
+ # Read a list of newline-separated strings from the standard input,
143
+ # and print each of them once, without duplicates. Input order is
144
+ # *not* preserved.
145
+ am__uniquify_input = $(AWK) '\
146
+ BEGIN { nonempty = 0; } \
147
+ { items[$$0] = 1; nonempty = 1; } \
148
+ END { if (nonempty) { for (i in items) print i; }; } \
149
+ '
150
+ # Make sure the list of sources is unique. This is necessary because,
151
+ # e.g., the same source file might be shared among _SOURCES variables
152
+ # for different programs/libraries.
153
+ am__define_uniq_tagged_files = \
154
+ list='$(am__tagged_files)'; \
155
+ unique=`for i in $$list; do \
156
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
157
+ done | $(am__uniquify_input)`
158
+ ETAGS = etags
159
+ CTAGS = ctags
160
+ DIST_SUBDIRS = $(SUBDIRS)
161
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl
162
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
163
+ am__relativize = \
164
+ dir0=`pwd`; \
165
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
166
+ sed_rest='s,^[^/]*/*,,'; \
167
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
168
+ sed_butlast='s,/*[^/]*$$,,'; \
169
+ while test -n "$$dir1"; do \
170
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
171
+ if test "$$first" != "."; then \
172
+ if test "$$first" = ".."; then \
173
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
174
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
175
+ else \
176
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
177
+ if test "$$first2" = "$$first"; then \
178
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
179
+ else \
180
+ dir2="../$$dir2"; \
181
+ fi; \
182
+ dir0="$$dir0"/"$$first"; \
183
+ fi; \
184
+ fi; \
185
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
186
+ done; \
187
+ reldir="$$dir2"
188
+ ACLOCAL = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing aclocal-1.15
189
+ ALL_LINGUAS =
190
+ AMTAR = $${TAR-tar}
191
+ AM_DEFAULT_VERBOSITY = 0
192
+ AR = ar
193
+ AUTOCONF = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoconf
194
+ AUTOHEADER = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoheader
195
+ AUTOMAKE = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing automake-1.15
196
+ AWK = awk
197
+ CATALOGS =
198
+ CATOBJEXT = .gmo
199
+ CC = gcc
200
+ CCDEPMODE = depmode=gcc3
201
+ 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
202
+ CPP = gcc -E
203
+ CPPFLAGS =
204
+ CYGPATH_W = echo
205
+ DATADIRNAME = share
206
+ DEFS = -DHAVE_CONFIG_H
207
+ DEPDIR = .deps
208
+ DLLTOOL = false
209
+ DSYMUTIL = dsymutil
210
+ DUMPBIN =
211
+ ECHO_C = \c
212
+ ECHO_N =
213
+ ECHO_T =
214
+ EGREP = /usr/bin/grep -E
215
+ EXEEXT =
216
+ FGREP = /usr/bin/grep -F
217
+ GETTEXT_PACKAGE = lasem-0.6
218
+ GLIB_MKENUMS = /usr/local/bin/glib-mkenums
219
+ GMOFILES =
220
+ GMSGFMT = /usr/local/bin/msgfmt
221
+ GREP = /usr/bin/grep
222
+ GTKDOC_CHECK = gtkdoc-check.test
223
+ GTKDOC_CHECK_PATH = /usr/local/bin/gtkdoc-check
224
+ 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
225
+ 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
226
+ GTKDOC_MKPDF = /usr/local/bin/gtkdoc-mkpdf
227
+ GTKDOC_REBASE = /usr/local/bin/gtkdoc-rebase
228
+ HTML_DIR = ${datadir}/gtk-doc/html
229
+ INSTALL = /usr/bin/install -c
230
+ INSTALL_DATA = ${INSTALL} -m 644
231
+ INSTALL_PROGRAM = ${INSTALL}
232
+ INSTALL_SCRIPT = ${INSTALL}
233
+ INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
234
+ INSTOBJEXT = .mo
235
+ INTLLIBS = -lintl
236
+ INTLTOOL_EXTRACT = /usr/local/bin/intltool-extract
237
+ INTLTOOL_MERGE = /usr/local/bin/intltool-merge
238
+ INTLTOOL_PERL = /usr/bin/perl
239
+ INTLTOOL_UPDATE = /usr/local/bin/intltool-update
240
+ INTLTOOL_V_MERGE = $(INTLTOOL__v_MERGE_$(V))
241
+ INTLTOOL_V_MERGE_OPTIONS = $(intltool__v_merge_options_$(V))
242
+ INTLTOOL__v_MERGE_ = $(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))
243
+ INTLTOOL__v_MERGE_0 = @echo " ITMRG " $@;
244
+ INTROSPECTION_CFLAGS =
245
+ INTROSPECTION_COMPILER =
246
+ INTROSPECTION_GENERATE =
247
+ INTROSPECTION_GIRDIR =
248
+ INTROSPECTION_LIBS =
249
+ INTROSPECTION_MAKEFILE =
250
+ INTROSPECTION_SCANNER =
251
+ INTROSPECTION_TYPELIBDIR =
252
+ LASEM_API_VERSION = 0.6
253
+ LASEM_API_VERSION_U = 0_6
254
+ LASEM_CFLAGS = -D_REENTRANT -I/usr/local/Cellar/gdk-pixbuf/2.30.8/include/gdk-pixbuf-2.0 -I/usr/local/Cellar/libpng/1.6.17/include/libpng16 -I/usr/local/Cellar/pango/1.36.8/include/pango-1.0 -I/usr/local/Cellar/cairo/1.12.16_1/include/cairo -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/local/Cellar/pixman/0.32.6/include/pixman-1 -I/usr/local/Cellar/fontconfig/2.11.1/include -I/usr/local/Cellar/freetype/2.5.3_1/include/freetype2 -I/usr/local/Cellar/freetype/2.5.5/include/freetype2 -I/usr/local/Cellar/libpng/1.6.17/include/libpng16 -I/opt/X11/include -I/usr/include/libxml2
255
+ LASEM_LIBS = -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/lib -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/opt/gettext/lib -L/usr/local/Cellar/cairo/1.12.16_1/lib -lgio-2.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lintl -lcairo -lxml2 -lm
256
+ LASEM_LIBTOOL_VERSION = 5:1:0
257
+ LD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
258
+ LDFLAGS = -L/usr/local/lib
259
+ LEX = flex
260
+ LEXLIB = -ll
261
+ LEX_OUTPUT_ROOT = lex.yy
262
+ LIBOBJS =
263
+ LIBS =
264
+ LIBTOOL = $(SHELL) $(top_builddir)/libtool
265
+ LIPO = lipo
266
+ LN_S = ln -s
267
+ LTLIBOBJS =
268
+ LT_SYS_LIBRARY_PATH =
269
+ MAINT =
270
+ MAKEINFO = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing makeinfo
271
+ MANIFEST_TOOL = :
272
+ MKDIR_P = ../.././install-sh -c -d
273
+ MKINSTALLDIRS = ./mkinstalldirs
274
+ MSGFMT = /usr/local/bin/msgfmt
275
+ MSGFMT_OPTS = -c
276
+ MSGMERGE = /usr/local/bin/msgmerge
277
+ NM = /usr/bin/nm
278
+ NMEDIT = nmedit
279
+ OBJDUMP = false
280
+ OBJEXT = o
281
+ OTOOL = otool
282
+ OTOOL64 = :
283
+ PACKAGE = lasem
284
+ PACKAGE_BUGREPORT = http://bugzilla.gnome.org/
285
+ PACKAGE_NAME = lasem
286
+ PACKAGE_STRING = lasem 0.5.1
287
+ PACKAGE_TARNAME = lasem
288
+ PACKAGE_URL =
289
+ PACKAGE_VERSION = 0.5.1
290
+ PATH_SEPARATOR = :
291
+ PKG_CONFIG = /usr/local/bin/pkg-config
292
+ PKG_CONFIG_LIBDIR =
293
+ PKG_CONFIG_PATH =
294
+ POFILES =
295
+ POSUB = po
296
+ PO_IN_DATADIR_FALSE =
297
+ PO_IN_DATADIR_TRUE =
298
+ RANLIB = ranlib
299
+ SED = /usr/bin/sed
300
+ SET_MAKE =
301
+ SHELL = /bin/sh
302
+ STRIP = strip
303
+ USE_NLS = yes
304
+ VERSION = 0.5.1
305
+ XGETTEXT = /usr/local/bin/xgettext
306
+ YACC = bison -y
307
+ YFLAGS =
308
+ abs_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/docs/reference
309
+ abs_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/docs/reference
310
+ abs_top_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
311
+ abs_top_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
312
+ ac_ct_AR = ar
313
+ ac_ct_CC = gcc
314
+ ac_ct_DUMPBIN =
315
+ am__include = include
316
+ am__leading_dot = .
317
+ am__quote =
318
+ am__tar = $${TAR-tar} chof - "$$tardir"
319
+ am__untar = $${TAR-tar} xf -
320
+ bindir = ${exec_prefix}/bin
321
+ build = x86_64-apple-darwin14.3.0
322
+ build_alias =
323
+ build_cpu = x86_64
324
+ build_os = darwin14.3.0
325
+ build_vendor = apple
326
+ builddir = .
327
+ datadir = ${datarootdir}
328
+ datarootdir = ${prefix}/share
329
+ docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
330
+ dvidir = ${docdir}
331
+ exec_prefix = ${prefix}
332
+ host = x86_64-apple-darwin14.3.0
333
+ host_alias =
334
+ host_cpu = x86_64
335
+ host_os = darwin14.3.0
336
+ host_vendor = apple
337
+ htmldir = ${docdir}
338
+ includedir = ${prefix}/include
339
+ infodir = ${datarootdir}/info
340
+ install_sh = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/install-sh
341
+ intltool__v_merge_options_ = $(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))
342
+ intltool__v_merge_options_0 = -q
343
+ libdir = ${exec_prefix}/lib
344
+ libexecdir = ${exec_prefix}/libexec
345
+ localedir = ${datarootdir}/locale
346
+ localstatedir = ${prefix}/var
347
+ mandir = ${datarootdir}/man
348
+ mkdir_p = $(MKDIR_P)
349
+ oldincludedir = /usr/include
350
+ pdfdir = ${docdir}
351
+ prefix = /usr/local
352
+ program_transform_name = s,x,x,
353
+ psdir = ${docdir}
354
+ sbindir = ${exec_prefix}/sbin
355
+ sharedstatedir = ${prefix}/com
356
+ srcdir = .
357
+ sysconfdir = ${prefix}/etc
358
+ target_alias =
359
+ top_build_prefix = ../../
360
+ top_builddir = ../..
361
+ top_srcdir = ../..
362
+ GTESTER = gtester
363
+ GTESTER_REPORT = gtester-report
364
+
365
+ # initialize variables for unconditional += appending
366
+ TEST_PROGS =
367
+ SUBDIRS = lasem
368
+ all: all-recursive
369
+
370
+ .SUFFIXES:
371
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps)
372
+ @for dep in $?; do \
373
+ case '$(am__configure_deps)' in \
374
+ *$$dep*) \
375
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
376
+ && { if test -f $@; then exit 0; else break; fi; }; \
377
+ exit 1;; \
378
+ esac; \
379
+ done; \
380
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/reference/Makefile'; \
381
+ $(am__cd) $(top_srcdir) && \
382
+ $(AUTOMAKE) --gnu docs/reference/Makefile
383
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
384
+ @case '$?' in \
385
+ *config.status*) \
386
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
387
+ *) \
388
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
389
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
390
+ esac;
391
+ $(top_srcdir)/Makefile.decl $(am__empty):
392
+
393
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
394
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
395
+
396
+ $(top_srcdir)/configure: $(am__configure_deps)
397
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
398
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
399
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
400
+ $(am__aclocal_m4_deps):
401
+
402
+ mostlyclean-libtool:
403
+ -rm -f *.lo
404
+
405
+ clean-libtool:
406
+ -rm -rf .libs _libs
407
+
408
+ # This directory's subdirectories are mostly independent; you can cd
409
+ # into them and run 'make' without going through this Makefile.
410
+ # To change the values of 'make' variables: instead of editing Makefiles,
411
+ # (1) if the variable is set in 'config.status', edit 'config.status'
412
+ # (which will cause the Makefiles to be regenerated when you run 'make');
413
+ # (2) otherwise, pass the desired values on the 'make' command line.
414
+ $(am__recursive_targets):
415
+ @fail=; \
416
+ if $(am__make_keepgoing); then \
417
+ failcom='fail=yes'; \
418
+ else \
419
+ failcom='exit 1'; \
420
+ fi; \
421
+ dot_seen=no; \
422
+ target=`echo $@ | sed s/-recursive//`; \
423
+ case "$@" in \
424
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
425
+ *) list='$(SUBDIRS)' ;; \
426
+ esac; \
427
+ for subdir in $$list; do \
428
+ echo "Making $$target in $$subdir"; \
429
+ if test "$$subdir" = "."; then \
430
+ dot_seen=yes; \
431
+ local_target="$$target-am"; \
432
+ else \
433
+ local_target="$$target"; \
434
+ fi; \
435
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
436
+ || eval $$failcom; \
437
+ done; \
438
+ if test "$$dot_seen" = "no"; then \
439
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
440
+ fi; test -z "$$fail"
441
+
442
+ ID: $(am__tagged_files)
443
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
444
+ tags: tags-recursive
445
+ TAGS: tags
446
+
447
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
448
+ set x; \
449
+ here=`pwd`; \
450
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
451
+ include_option=--etags-include; \
452
+ empty_fix=.; \
453
+ else \
454
+ include_option=--include; \
455
+ empty_fix=; \
456
+ fi; \
457
+ list='$(SUBDIRS)'; for subdir in $$list; do \
458
+ if test "$$subdir" = .; then :; else \
459
+ test ! -f $$subdir/TAGS || \
460
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
461
+ fi; \
462
+ done; \
463
+ $(am__define_uniq_tagged_files); \
464
+ shift; \
465
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
466
+ test -n "$$unique" || unique=$$empty_fix; \
467
+ if test $$# -gt 0; then \
468
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
469
+ "$$@" $$unique; \
470
+ else \
471
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
472
+ $$unique; \
473
+ fi; \
474
+ fi
475
+ ctags: ctags-recursive
476
+
477
+ CTAGS: ctags
478
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
479
+ $(am__define_uniq_tagged_files); \
480
+ test -z "$(CTAGS_ARGS)$$unique" \
481
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
482
+ $$unique
483
+
484
+ GTAGS:
485
+ here=`$(am__cd) $(top_builddir) && pwd` \
486
+ && $(am__cd) $(top_srcdir) \
487
+ && gtags -i $(GTAGS_ARGS) "$$here"
488
+ cscopelist: cscopelist-recursive
489
+
490
+ cscopelist-am: $(am__tagged_files)
491
+ list='$(am__tagged_files)'; \
492
+ case "$(srcdir)" in \
493
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
494
+ *) sdir=$(subdir)/$(srcdir) ;; \
495
+ esac; \
496
+ for i in $$list; do \
497
+ if test -f "$$i"; then \
498
+ echo "$(subdir)/$$i"; \
499
+ else \
500
+ echo "$$sdir/$$i"; \
501
+ fi; \
502
+ done >> $(top_builddir)/cscope.files
503
+
504
+ distclean-tags:
505
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
506
+
507
+ distdir: $(DISTFILES)
508
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
509
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
510
+ list='$(DISTFILES)'; \
511
+ dist_files=`for file in $$list; do echo $$file; done | \
512
+ sed -e "s|^$$srcdirstrip/||;t" \
513
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
514
+ case $$dist_files in \
515
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
516
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
517
+ sort -u` ;; \
518
+ esac; \
519
+ for file in $$dist_files; do \
520
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
521
+ if test -d $$d/$$file; then \
522
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
523
+ if test -d "$(distdir)/$$file"; then \
524
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
525
+ fi; \
526
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
527
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
528
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
529
+ fi; \
530
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
531
+ else \
532
+ test -f "$(distdir)/$$file" \
533
+ || cp -p $$d/$$file "$(distdir)/$$file" \
534
+ || exit 1; \
535
+ fi; \
536
+ done
537
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
538
+ if test "$$subdir" = .; then :; else \
539
+ $(am__make_dryrun) \
540
+ || test -d "$(distdir)/$$subdir" \
541
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
542
+ || exit 1; \
543
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
544
+ $(am__relativize); \
545
+ new_distdir=$$reldir; \
546
+ dir1=$$subdir; dir2="$(top_distdir)"; \
547
+ $(am__relativize); \
548
+ new_top_distdir=$$reldir; \
549
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
550
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
551
+ ($(am__cd) $$subdir && \
552
+ $(MAKE) $(AM_MAKEFLAGS) \
553
+ top_distdir="$$new_top_distdir" \
554
+ distdir="$$new_distdir" \
555
+ am__remove_distdir=: \
556
+ am__skip_length_check=: \
557
+ am__skip_mode_fix=: \
558
+ distdir) \
559
+ || exit 1; \
560
+ fi; \
561
+ done
562
+ check-am: all-am
563
+ $(MAKE) $(AM_MAKEFLAGS) check-local
564
+ check: check-recursive
565
+ all-am: Makefile
566
+ installdirs: installdirs-recursive
567
+ installdirs-am:
568
+ install: install-recursive
569
+ install-exec: install-exec-recursive
570
+ install-data: install-data-recursive
571
+ uninstall: uninstall-recursive
572
+
573
+ install-am: all-am
574
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
575
+
576
+ installcheck: installcheck-recursive
577
+ install-strip:
578
+ if test -z '$(STRIP)'; then \
579
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
580
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
581
+ install; \
582
+ else \
583
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
584
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
585
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
586
+ fi
587
+ mostlyclean-generic:
588
+
589
+ clean-generic:
590
+
591
+ distclean-generic:
592
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
593
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
594
+
595
+ maintainer-clean-generic:
596
+ @echo "This command is intended for maintainers to use"
597
+ @echo "it deletes files that may require special tools to rebuild."
598
+ clean: clean-recursive
599
+
600
+ clean-am: clean-generic clean-libtool mostlyclean-am
601
+
602
+ distclean: distclean-recursive
603
+ -rm -f Makefile
604
+ distclean-am: clean-am distclean-generic distclean-tags
605
+
606
+ dvi: dvi-recursive
607
+
608
+ dvi-am:
609
+
610
+ html: html-recursive
611
+
612
+ html-am:
613
+
614
+ info: info-recursive
615
+
616
+ info-am:
617
+
618
+ install-data-am:
619
+
620
+ install-dvi: install-dvi-recursive
621
+
622
+ install-dvi-am:
623
+
624
+ install-exec-am:
625
+
626
+ install-html: install-html-recursive
627
+
628
+ install-html-am:
629
+
630
+ install-info: install-info-recursive
631
+
632
+ install-info-am:
633
+
634
+ install-man:
635
+
636
+ install-pdf: install-pdf-recursive
637
+
638
+ install-pdf-am:
639
+
640
+ install-ps: install-ps-recursive
641
+
642
+ install-ps-am:
643
+
644
+ installcheck-am:
645
+
646
+ maintainer-clean: maintainer-clean-recursive
647
+ -rm -f Makefile
648
+ maintainer-clean-am: distclean-am maintainer-clean-generic
649
+
650
+ mostlyclean: mostlyclean-recursive
651
+
652
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
653
+
654
+ pdf: pdf-recursive
655
+
656
+ pdf-am:
657
+
658
+ ps: ps-recursive
659
+
660
+ ps-am:
661
+
662
+ uninstall-am:
663
+
664
+ .MAKE: $(am__recursive_targets) check-am install-am install-strip
665
+
666
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
667
+ check-am check-local clean clean-generic clean-libtool \
668
+ cscopelist-am ctags ctags-am distclean distclean-generic \
669
+ distclean-libtool distclean-tags distdir dvi dvi-am html \
670
+ html-am info info-am install install-am install-data \
671
+ install-data-am install-dvi install-dvi-am install-exec \
672
+ install-exec-am install-html install-html-am install-info \
673
+ install-info-am install-man install-pdf install-pdf-am \
674
+ install-ps install-ps-am install-strip installcheck \
675
+ installcheck-am installdirs installdirs-am maintainer-clean \
676
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
677
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
678
+ uninstall-am
679
+
680
+ .PRECIOUS: Makefile
681
+
682
+
683
+ ### testing rules
684
+
685
+ # test: run all tests in cwd and subdirs
686
+ test: ${TEST_PROGS}
687
+ @test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
688
+ @ for subdir in $(SUBDIRS) . ; do \
689
+ test "$$subdir" = "." -o "$$subdir" = "po" || \
690
+ ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
691
+ done
692
+
693
+ # test-report: run tests in subdirs and generate report
694
+ # perf-report: run tests in subdirs with -m perf and generate report
695
+ # full-report: like test-report: with -m perf and -m slow
696
+ test-report perf-report full-report: ${TEST_PROGS}
697
+ @test -z "${TEST_PROGS}" || { \
698
+ case $@ in \
699
+ test-report) test_options="-k";; \
700
+ perf-report) test_options="-k -m=perf";; \
701
+ full-report) test_options="-k -m=perf -m=slow";; \
702
+ esac ; \
703
+ if test -z "$$GTESTER_LOGDIR" ; then \
704
+ ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
705
+ elif test -n "${TEST_PROGS}" ; then \
706
+ ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
707
+ fi ; \
708
+ }
709
+ @ ignore_logdir=true ; \
710
+ if test -z "$$GTESTER_LOGDIR" ; then \
711
+ GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
712
+ ignore_logdir=false ; \
713
+ fi ; \
714
+ for subdir in $(SUBDIRS) . ; do \
715
+ test "$$subdir" = "." -o "$$subdir" = "po" || \
716
+ ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
717
+ done ; \
718
+ $$ignore_logdir || { \
719
+ echo '<?xml version="1.0"?>' > $@.xml ; \
720
+ echo '<report-collection>' >> $@.xml ; \
721
+ for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
722
+ sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
723
+ done ; \
724
+ echo >> $@.xml ; \
725
+ echo '</report-collection>' >> $@.xml ; \
726
+ rm -rf "$$GTESTER_LOGDIR"/ ; \
727
+ ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
728
+ }
729
+ .PHONY: test test-report perf-report full-report
730
+ # run make test as part of make check
731
+ check-local: test
732
+
733
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
734
+ # Otherwise a system limit (for SysV at least) may be exceeded.
735
+ .NOEXPORT: