melisa 0.2.4 → 0.2.5

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 (49) hide show
  1. checksums.yaml +4 -4
  2. data/ext/extconf.rb +3 -0
  3. data/ext/marisa-0.2.4/Makefile +803 -0
  4. data/ext/marisa-0.2.4/config.log +794 -0
  5. data/ext/marisa-0.2.4/config.status +2150 -0
  6. data/ext/marisa-0.2.4/lib/Makefile +701 -0
  7. data/ext/marisa-0.2.4/lib/agent.lo +12 -0
  8. data/ext/marisa-0.2.4/lib/agent.o +0 -0
  9. data/ext/marisa-0.2.4/lib/bit-vector.lo +12 -0
  10. data/ext/marisa-0.2.4/lib/bit-vector.o +0 -0
  11. data/ext/marisa-0.2.4/lib/keyset.lo +12 -0
  12. data/ext/marisa-0.2.4/lib/keyset.o +0 -0
  13. data/ext/marisa-0.2.4/lib/libmarisa.la +41 -0
  14. data/ext/marisa-0.2.4/lib/louds-trie.lo +12 -0
  15. data/ext/marisa-0.2.4/lib/louds-trie.o +0 -0
  16. data/ext/marisa-0.2.4/lib/mapper.lo +12 -0
  17. data/ext/marisa-0.2.4/lib/mapper.o +0 -0
  18. data/ext/marisa-0.2.4/lib/reader.lo +12 -0
  19. data/ext/marisa-0.2.4/lib/reader.o +0 -0
  20. data/ext/marisa-0.2.4/lib/tail.lo +12 -0
  21. data/ext/marisa-0.2.4/lib/tail.o +0 -0
  22. data/ext/marisa-0.2.4/lib/trie.lo +12 -0
  23. data/ext/marisa-0.2.4/lib/trie.o +0 -0
  24. data/ext/marisa-0.2.4/lib/writer.lo +12 -0
  25. data/ext/marisa-0.2.4/lib/writer.o +0 -0
  26. data/ext/marisa-0.2.4/libtool +10243 -0
  27. data/ext/marisa-0.2.4/marisa.pc +11 -0
  28. data/ext/marisa-0.2.4/mkmf.log +27 -87
  29. data/ext/marisa-0.2.4/tests/Makefile +624 -0
  30. data/ext/marisa-0.2.4/tools/Makefile +616 -0
  31. data/ext/marisa-0.2.4/tools/cmdopt.lo +12 -0
  32. data/ext/marisa-0.2.4/tools/cmdopt.o +0 -0
  33. data/ext/marisa-0.2.4/tools/libcmdopt.la +41 -0
  34. data/ext/marisa-0.2.4/tools/marisa-benchmark +0 -0
  35. data/ext/marisa-0.2.4/tools/marisa-benchmark.o +0 -0
  36. data/ext/marisa-0.2.4/tools/marisa-build +0 -0
  37. data/ext/marisa-0.2.4/tools/marisa-build.o +0 -0
  38. data/ext/marisa-0.2.4/tools/marisa-common-prefix-search +0 -0
  39. data/ext/marisa-0.2.4/tools/marisa-common-prefix-search.o +0 -0
  40. data/ext/marisa-0.2.4/tools/marisa-dump +0 -0
  41. data/ext/marisa-0.2.4/tools/marisa-dump.o +0 -0
  42. data/ext/marisa-0.2.4/tools/marisa-lookup +0 -0
  43. data/ext/marisa-0.2.4/tools/marisa-lookup.o +0 -0
  44. data/ext/marisa-0.2.4/tools/marisa-predictive-search +0 -0
  45. data/ext/marisa-0.2.4/tools/marisa-predictive-search.o +0 -0
  46. data/ext/marisa-0.2.4/tools/marisa-reverse-lookup +0 -0
  47. data/ext/marisa-0.2.4/tools/marisa-reverse-lookup.o +0 -0
  48. data/lib/melisa/version.rb +1 -1
  49. metadata +45 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f5df7573071bbf906b70c67f96dead5a58490a5
4
- data.tar.gz: df39a85b6d94851a2c1fbbdc2d024dbc62350322
3
+ metadata.gz: d0e6c03d7b6ab7e9aad8d68892ec70f50890912b
4
+ data.tar.gz: 853bcf1ed40a10f0206a1e277abf45902cb053b3
5
5
  SHA512:
6
- metadata.gz: 82cfd0158c90a1efbabf44aa81dbb65554b55e2d31a5ff2b56997c4498c6a7c3497469ff60c5a11cd4abb7328df47df856ee9753bcbc8ce08d9b8e430620d5d0
7
- data.tar.gz: 2824e0f0eb7b72ddf91864941d1116439600cf1e1e331b4df35e0bac1e7a071eb53a9e42ff702134c78071b8278cbc409b55c1dfe5ae3f10736be8b73fe77aae
6
+ metadata.gz: 0253fa2a7c7ba135e1b027870821bdb39ba8353783d509b0f716d13b54b38b08a71f7c95f598f25b9fb9d06d1f51ca6c6cf384437259cf76ac2e9fde22ea13fc
7
+ data.tar.gz: bde397cd35e02f4280ba420984f869af03c5b9a86b3f94b54f5675d8ef201fb25ec67d4405d9353da8ac4e070f3b80204fbc8a785095ac9dfc8081c1bbb3a82d
@@ -20,6 +20,9 @@ end
20
20
  MARISA_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "marisa-0.2.4"))
21
21
  PREFIX = File.expand_path(File.join(File.dirname(__FILE__), "pkg"))
22
22
 
23
+ # Magic incantation that lets the linker see the installed marisa lib
24
+ $LDFLAGS << " -Wl,-rpath,#{File.join(PREFIX, "lib")}"
25
+
23
26
  FileUtils.cd(MARISA_ROOT) do
24
27
  sys "./configure --enable-sse3 --prefix='#{PREFIX}'"
25
28
  sys "make install"
@@ -0,0 +1,803 @@
1
+ # Makefile.in generated by automake 1.11.3 from Makefile.am.
2
+ # Makefile. Generated from Makefile.in by configure.
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
+ # Foundation, Inc.
7
+ # This Makefile.in is free software; the Free Software Foundation
8
+ # gives unlimited permission to copy and/or distribute it,
9
+ # with or without modifications, as long as this notice is preserved.
10
+
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
16
+
17
+
18
+
19
+ pkgdatadir = $(datadir)/marisa
20
+ pkgincludedir = $(includedir)/marisa
21
+ pkglibdir = $(libdir)/marisa
22
+ pkglibexecdir = $(libexecdir)/marisa
23
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
+ install_sh_DATA = $(install_sh) -c -m 644
25
+ install_sh_PROGRAM = $(install_sh) -c
26
+ install_sh_SCRIPT = $(install_sh) -c
27
+ INSTALL_HEADER = $(INSTALL_DATA)
28
+ transform = $(program_transform_name)
29
+ NORMAL_INSTALL = :
30
+ PRE_INSTALL = :
31
+ POST_INSTALL = :
32
+ NORMAL_UNINSTALL = :
33
+ PRE_UNINSTALL = :
34
+ POST_UNINSTALL = :
35
+ build_triplet = x86_64-apple-darwin13.3.0
36
+ host_triplet = x86_64-apple-darwin13.3.0
37
+ subdir = .
38
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
39
+ $(srcdir)/Makefile.in $(srcdir)/marisa.pc.in \
40
+ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
41
+ config.guess config.sub depcomp install-sh ltmain.sh missing
42
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
43
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
44
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
45
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
46
+ $(top_srcdir)/configure.ac
47
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
48
+ $(ACLOCAL_M4)
49
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
50
+ configure.lineno config.status.lineno
51
+ mkinstalldirs = $(install_sh) -d
52
+ CONFIG_CLEAN_FILES = marisa.pc
53
+ CONFIG_CLEAN_VPATH_FILES =
54
+ SOURCES =
55
+ DIST_SOURCES =
56
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
57
+ html-recursive info-recursive install-data-recursive \
58
+ install-dvi-recursive install-exec-recursive \
59
+ install-html-recursive install-info-recursive \
60
+ install-pdf-recursive install-ps-recursive install-recursive \
61
+ installcheck-recursive installdirs-recursive pdf-recursive \
62
+ ps-recursive uninstall-recursive
63
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
64
+ am__vpath_adj = case $$p in \
65
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
66
+ *) f=$$p;; \
67
+ esac;
68
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
69
+ am__install_max = 40
70
+ am__nobase_strip_setup = \
71
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
72
+ am__nobase_strip = \
73
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
74
+ am__nobase_list = $(am__nobase_strip_setup); \
75
+ for p in $$list; do echo "$$p $$p"; done | \
76
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
77
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
78
+ if (++n[$$2] == $(am__install_max)) \
79
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
80
+ END { for (dir in files) print dir, files[dir] }'
81
+ am__base_list = \
82
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
83
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
84
+ am__uninstall_files_from_dir = { \
85
+ test -z "$$files" \
86
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
87
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
88
+ $(am__cd) "$$dir" && rm -f $$files; }; \
89
+ }
90
+ am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
91
+ DATA = $(pkgconfig_DATA)
92
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
93
+ distclean-recursive maintainer-clean-recursive
94
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
95
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
96
+ distdir dist dist-all distcheck
97
+ ETAGS = etags
98
+ CTAGS = ctags
99
+ DIST_SUBDIRS = $(SUBDIRS)
100
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
101
+ distdir = $(PACKAGE)-$(VERSION)
102
+ top_distdir = $(distdir)
103
+ am__remove_distdir = \
104
+ if test -d "$(distdir)"; then \
105
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
106
+ && rm -rf "$(distdir)" \
107
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
108
+ else :; fi
109
+ am__relativize = \
110
+ dir0=`pwd`; \
111
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
112
+ sed_rest='s,^[^/]*/*,,'; \
113
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
114
+ sed_butlast='s,/*[^/]*$$,,'; \
115
+ while test -n "$$dir1"; do \
116
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
117
+ if test "$$first" != "."; then \
118
+ if test "$$first" = ".."; then \
119
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
120
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
121
+ else \
122
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
123
+ if test "$$first2" = "$$first"; then \
124
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
125
+ else \
126
+ dir2="../$$dir2"; \
127
+ fi; \
128
+ dir0="$$dir0"/"$$first"; \
129
+ fi; \
130
+ fi; \
131
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
132
+ done; \
133
+ reldir="$$dir2"
134
+ DIST_ARCHIVES = $(distdir).tar.gz
135
+ GZIP_ENV = --best
136
+ distuninstallcheck_listfiles = find . -type f -print
137
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
138
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
139
+ distcleancheck_listfiles = find . -type f -print
140
+ ACLOCAL = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/missing --run aclocal-1.11
141
+ AMTAR = $${TAR-tar}
142
+ AR = ar
143
+ AUTOCONF = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/missing --run autoconf
144
+ AUTOHEADER = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/missing --run autoheader
145
+ AUTOMAKE = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/missing --run automake-1.11
146
+ AWK = awk
147
+ CC = gcc
148
+ CCDEPMODE = depmode=gcc3
149
+ CFLAGS = -g -O2
150
+ CPP = gcc -E
151
+ CPPFLAGS =
152
+ CXX = g++
153
+ CXXCPP = g++ -E
154
+ CXXDEPMODE = depmode=gcc3
155
+ CXXFLAGS = -g -O2 -DMARISA_USE_SSE3 -msse3
156
+ CYGPATH_W = echo
157
+ DEFS = -DPACKAGE_NAME=\"marisa\" -DPACKAGE_TARNAME=\"marisa\" -DPACKAGE_VERSION=\"0.2.4\" -DPACKAGE_STRING=\"marisa\ 0.2.4\" -DPACKAGE_BUGREPORT=\"syata@acm.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"marisa\" -DVERSION=\"0.2.4\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\"
158
+ DEPDIR = .deps
159
+ DLLTOOL = false
160
+ DSYMUTIL = dsymutil
161
+ DUMPBIN =
162
+ ECHO_C = \c
163
+ ECHO_N =
164
+ ECHO_T =
165
+ EGREP = /usr/bin/grep -E
166
+ EXEEXT =
167
+ FGREP = /usr/bin/grep -F
168
+ GREP = /usr/bin/grep
169
+ INSTALL = /usr/bin/install -c
170
+ INSTALL_DATA = ${INSTALL} -m 644
171
+ INSTALL_PROGRAM = ${INSTALL}
172
+ INSTALL_SCRIPT = ${INSTALL}
173
+ INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
174
+ LD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
175
+ LDFLAGS =
176
+ LIBOBJS =
177
+ LIBS =
178
+ LIBTOOL = $(SHELL) $(top_builddir)/libtool
179
+ LIPO = lipo
180
+ LN_S = ln -s
181
+ LTLIBOBJS =
182
+ MAKEINFO = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/missing --run makeinfo
183
+ MANIFEST_TOOL = :
184
+ MKDIR_P = ./install-sh -c -d
185
+ NM = /usr/bin/nm
186
+ NMEDIT = nmedit
187
+ OBJDUMP = false
188
+ OBJEXT = o
189
+ OTOOL = otool
190
+ OTOOL64 = :
191
+ PACKAGE = marisa
192
+ PACKAGE_BUGREPORT = syata@acm.org
193
+ PACKAGE_NAME = marisa
194
+ PACKAGE_STRING = marisa 0.2.4
195
+ PACKAGE_TARNAME = marisa
196
+ PACKAGE_URL =
197
+ PACKAGE_VERSION = 0.2.4
198
+ PATH_SEPARATOR = :
199
+ RANLIB = ranlib
200
+ SED = /usr/bin/sed
201
+ SET_MAKE =
202
+ SHELL = /bin/sh
203
+ STRIP = strip
204
+ VERSION = 0.2.4
205
+ abs_builddir = /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4
206
+ abs_srcdir = /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4
207
+ abs_top_builddir = /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4
208
+ abs_top_srcdir = /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4
209
+ ac_ct_AR = ar
210
+ ac_ct_CC = gcc
211
+ ac_ct_CXX = g++
212
+ ac_ct_DUMPBIN =
213
+ am__include = include
214
+ am__leading_dot = .
215
+ am__quote =
216
+ am__tar = $${TAR-tar} chof - "$$tardir"
217
+ am__untar = $${TAR-tar} xf -
218
+ bindir = ${exec_prefix}/bin
219
+ build = x86_64-apple-darwin13.3.0
220
+ build_alias =
221
+ build_cpu = x86_64
222
+ build_os = darwin13.3.0
223
+ build_vendor = apple
224
+ builddir = .
225
+ datadir = ${datarootdir}
226
+ datarootdir = ${prefix}/share
227
+ docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
228
+ dvidir = ${docdir}
229
+ exec_prefix = ${prefix}
230
+ host = x86_64-apple-darwin13.3.0
231
+ host_alias =
232
+ host_cpu = x86_64
233
+ host_os = darwin13.3.0
234
+ host_vendor = apple
235
+ htmldir = ${docdir}
236
+ includedir = ${prefix}/include
237
+ infodir = ${datarootdir}/info
238
+ install_sh = ${SHELL} /Users/duane/Dropbox/Projects/wordtree/melisa/ext/marisa-0.2.4/install-sh
239
+ libdir = ${exec_prefix}/lib
240
+ libexecdir = ${exec_prefix}/libexec
241
+ localedir = ${datarootdir}/locale
242
+ localstatedir = ${prefix}/var
243
+ mandir = ${datarootdir}/man
244
+ mkdir_p = $(top_builddir)/./install-sh -c -d
245
+ oldincludedir = /usr/include
246
+ pdfdir = ${docdir}
247
+ prefix = /Users/duane/Dropbox/Projects/wordtree/melisa/ext/pkg
248
+ program_transform_name = s,x,x,
249
+ psdir = ${docdir}
250
+ sbindir = ${exec_prefix}/sbin
251
+ sharedstatedir = ${prefix}/com
252
+ srcdir = .
253
+ sysconfdir = ${prefix}/etc
254
+ target_alias =
255
+ top_build_prefix =
256
+ top_builddir = .
257
+ top_srcdir = .
258
+ ACLOCAL_AMFLAGS = -I m4
259
+ SUBDIRS = lib tools tests
260
+ pkgconfigdir = ${libdir}/pkgconfig
261
+ pkgconfig_DATA = marisa.pc
262
+ EXTRA_DIST = \
263
+ bindings/Makefile \
264
+ bindings/perl/Makefile.PL \
265
+ bindings/perl/marisa.pm \
266
+ bindings/python/setup.py \
267
+ bindings/python/marisa.py \
268
+ bindings/ruby/extconf.rb \
269
+ bindings/*.cxx \
270
+ bindings/*.h \
271
+ bindings/*.i \
272
+ bindings/*/*.cxx \
273
+ bindings/*/*.h \
274
+ bindings/*/sample.* \
275
+ docs/*.html \
276
+ docs/*.css \
277
+ vs2008/vs2008.* \
278
+ vs2008/*/*
279
+
280
+ all: all-recursive
281
+
282
+ .SUFFIXES:
283
+ am--refresh: Makefile
284
+ @:
285
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
286
+ @for dep in $?; do \
287
+ case '$(am__configure_deps)' in \
288
+ *$$dep*) \
289
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
290
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
291
+ && exit 0; \
292
+ exit 1;; \
293
+ esac; \
294
+ done; \
295
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
296
+ $(am__cd) $(top_srcdir) && \
297
+ $(AUTOMAKE) --gnu Makefile
298
+ .PRECIOUS: Makefile
299
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
300
+ @case '$?' in \
301
+ *config.status*) \
302
+ echo ' $(SHELL) ./config.status'; \
303
+ $(SHELL) ./config.status;; \
304
+ *) \
305
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
306
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
307
+ esac;
308
+
309
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
310
+ $(SHELL) ./config.status --recheck
311
+
312
+ $(top_srcdir)/configure: $(am__configure_deps)
313
+ $(am__cd) $(srcdir) && $(AUTOCONF)
314
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
315
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
316
+ $(am__aclocal_m4_deps):
317
+ marisa.pc: $(top_builddir)/config.status $(srcdir)/marisa.pc.in
318
+ cd $(top_builddir) && $(SHELL) ./config.status $@
319
+
320
+ mostlyclean-libtool:
321
+ -rm -f *.lo
322
+
323
+ clean-libtool:
324
+ -rm -rf .libs _libs
325
+
326
+ distclean-libtool:
327
+ -rm -f libtool config.lt
328
+ install-pkgconfigDATA: $(pkgconfig_DATA)
329
+ @$(NORMAL_INSTALL)
330
+ test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
331
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
332
+ for p in $$list; do \
333
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
334
+ echo "$$d$$p"; \
335
+ done | $(am__base_list) | \
336
+ while read files; do \
337
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
338
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
339
+ done
340
+
341
+ uninstall-pkgconfigDATA:
342
+ @$(NORMAL_UNINSTALL)
343
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
344
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
345
+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
346
+
347
+ # This directory's subdirectories are mostly independent; you can cd
348
+ # into them and run `make' without going through this Makefile.
349
+ # To change the values of `make' variables: instead of editing Makefiles,
350
+ # (1) if the variable is set in `config.status', edit `config.status'
351
+ # (which will cause the Makefiles to be regenerated when you run `make');
352
+ # (2) otherwise, pass the desired values on the `make' command line.
353
+ $(RECURSIVE_TARGETS):
354
+ @fail= failcom='exit 1'; \
355
+ for f in x $$MAKEFLAGS; do \
356
+ case $$f in \
357
+ *=* | --[!k]*);; \
358
+ *k*) failcom='fail=yes';; \
359
+ esac; \
360
+ done; \
361
+ dot_seen=no; \
362
+ target=`echo $@ | sed s/-recursive//`; \
363
+ list='$(SUBDIRS)'; for subdir in $$list; do \
364
+ echo "Making $$target in $$subdir"; \
365
+ if test "$$subdir" = "."; then \
366
+ dot_seen=yes; \
367
+ local_target="$$target-am"; \
368
+ else \
369
+ local_target="$$target"; \
370
+ fi; \
371
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
372
+ || eval $$failcom; \
373
+ done; \
374
+ if test "$$dot_seen" = "no"; then \
375
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
376
+ fi; test -z "$$fail"
377
+
378
+ $(RECURSIVE_CLEAN_TARGETS):
379
+ @fail= failcom='exit 1'; \
380
+ for f in x $$MAKEFLAGS; do \
381
+ case $$f in \
382
+ *=* | --[!k]*);; \
383
+ *k*) failcom='fail=yes';; \
384
+ esac; \
385
+ done; \
386
+ dot_seen=no; \
387
+ case "$@" in \
388
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
389
+ *) list='$(SUBDIRS)' ;; \
390
+ esac; \
391
+ rev=''; for subdir in $$list; do \
392
+ if test "$$subdir" = "."; then :; else \
393
+ rev="$$subdir $$rev"; \
394
+ fi; \
395
+ done; \
396
+ rev="$$rev ."; \
397
+ target=`echo $@ | sed s/-recursive//`; \
398
+ for subdir in $$rev; do \
399
+ echo "Making $$target in $$subdir"; \
400
+ if test "$$subdir" = "."; then \
401
+ local_target="$$target-am"; \
402
+ else \
403
+ local_target="$$target"; \
404
+ fi; \
405
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
406
+ || eval $$failcom; \
407
+ done && test -z "$$fail"
408
+ tags-recursive:
409
+ list='$(SUBDIRS)'; for subdir in $$list; do \
410
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
411
+ done
412
+ ctags-recursive:
413
+ list='$(SUBDIRS)'; for subdir in $$list; do \
414
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
415
+ done
416
+
417
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
418
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
419
+ unique=`for i in $$list; do \
420
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
421
+ done | \
422
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
423
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
424
+ mkid -fID $$unique
425
+ tags: TAGS
426
+
427
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
428
+ $(TAGS_FILES) $(LISP)
429
+ set x; \
430
+ here=`pwd`; \
431
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
432
+ include_option=--etags-include; \
433
+ empty_fix=.; \
434
+ else \
435
+ include_option=--include; \
436
+ empty_fix=; \
437
+ fi; \
438
+ list='$(SUBDIRS)'; for subdir in $$list; do \
439
+ if test "$$subdir" = .; then :; else \
440
+ test ! -f $$subdir/TAGS || \
441
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
442
+ fi; \
443
+ done; \
444
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
445
+ unique=`for i in $$list; do \
446
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
447
+ done | \
448
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
449
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
450
+ shift; \
451
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
452
+ test -n "$$unique" || unique=$$empty_fix; \
453
+ if test $$# -gt 0; then \
454
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
455
+ "$$@" $$unique; \
456
+ else \
457
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
458
+ $$unique; \
459
+ fi; \
460
+ fi
461
+ ctags: CTAGS
462
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
463
+ $(TAGS_FILES) $(LISP)
464
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
465
+ unique=`for i in $$list; do \
466
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
467
+ done | \
468
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
469
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
470
+ test -z "$(CTAGS_ARGS)$$unique" \
471
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
472
+ $$unique
473
+
474
+ GTAGS:
475
+ here=`$(am__cd) $(top_builddir) && pwd` \
476
+ && $(am__cd) $(top_srcdir) \
477
+ && gtags -i $(GTAGS_ARGS) "$$here"
478
+
479
+ distclean-tags:
480
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
481
+
482
+ distdir: $(DISTFILES)
483
+ $(am__remove_distdir)
484
+ test -d "$(distdir)" || mkdir "$(distdir)"
485
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
486
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
487
+ list='$(DISTFILES)'; \
488
+ dist_files=`for file in $$list; do echo $$file; done | \
489
+ sed -e "s|^$$srcdirstrip/||;t" \
490
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
491
+ case $$dist_files in \
492
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
493
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
494
+ sort -u` ;; \
495
+ esac; \
496
+ for file in $$dist_files; do \
497
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
498
+ if test -d $$d/$$file; then \
499
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
500
+ if test -d "$(distdir)/$$file"; then \
501
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
502
+ fi; \
503
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
504
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
505
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
506
+ fi; \
507
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
508
+ else \
509
+ test -f "$(distdir)/$$file" \
510
+ || cp -p $$d/$$file "$(distdir)/$$file" \
511
+ || exit 1; \
512
+ fi; \
513
+ done
514
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
515
+ if test "$$subdir" = .; then :; else \
516
+ test -d "$(distdir)/$$subdir" \
517
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
518
+ || exit 1; \
519
+ fi; \
520
+ done
521
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
522
+ if test "$$subdir" = .; then :; else \
523
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
524
+ $(am__relativize); \
525
+ new_distdir=$$reldir; \
526
+ dir1=$$subdir; dir2="$(top_distdir)"; \
527
+ $(am__relativize); \
528
+ new_top_distdir=$$reldir; \
529
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
530
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
531
+ ($(am__cd) $$subdir && \
532
+ $(MAKE) $(AM_MAKEFLAGS) \
533
+ top_distdir="$$new_top_distdir" \
534
+ distdir="$$new_distdir" \
535
+ am__remove_distdir=: \
536
+ am__skip_length_check=: \
537
+ am__skip_mode_fix=: \
538
+ distdir) \
539
+ || exit 1; \
540
+ fi; \
541
+ done
542
+ -test -n "$(am__skip_mode_fix)" \
543
+ || find "$(distdir)" -type d ! -perm -755 \
544
+ -exec chmod u+rwx,go+rx {} \; -o \
545
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
546
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
547
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
548
+ || chmod -R a+r "$(distdir)"
549
+ dist-gzip: distdir
550
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
551
+ $(am__remove_distdir)
552
+
553
+ dist-bzip2: distdir
554
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
555
+ $(am__remove_distdir)
556
+
557
+ dist-lzip: distdir
558
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
559
+ $(am__remove_distdir)
560
+
561
+ dist-lzma: distdir
562
+ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
563
+ $(am__remove_distdir)
564
+
565
+ dist-xz: distdir
566
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
567
+ $(am__remove_distdir)
568
+
569
+ dist-tarZ: distdir
570
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
571
+ $(am__remove_distdir)
572
+
573
+ dist-shar: distdir
574
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
575
+ $(am__remove_distdir)
576
+
577
+ dist-zip: distdir
578
+ -rm -f $(distdir).zip
579
+ zip -rq $(distdir).zip $(distdir)
580
+ $(am__remove_distdir)
581
+
582
+ dist dist-all: distdir
583
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
584
+ $(am__remove_distdir)
585
+
586
+ # This target untars the dist file and tries a VPATH configuration. Then
587
+ # it guarantees that the distribution is self-contained by making another
588
+ # tarfile.
589
+ distcheck: dist
590
+ case '$(DIST_ARCHIVES)' in \
591
+ *.tar.gz*) \
592
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
593
+ *.tar.bz2*) \
594
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
595
+ *.tar.lzma*) \
596
+ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
597
+ *.tar.lz*) \
598
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
599
+ *.tar.xz*) \
600
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
601
+ *.tar.Z*) \
602
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
603
+ *.shar.gz*) \
604
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
605
+ *.zip*) \
606
+ unzip $(distdir).zip ;;\
607
+ esac
608
+ chmod -R a-w $(distdir); chmod a+w $(distdir)
609
+ mkdir $(distdir)/_build
610
+ mkdir $(distdir)/_inst
611
+ chmod a-w $(distdir)
612
+ test -d $(distdir)/_build || exit 0; \
613
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
614
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
615
+ && am__cwd=`pwd` \
616
+ && $(am__cd) $(distdir)/_build \
617
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
618
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
619
+ $(DISTCHECK_CONFIGURE_FLAGS) \
620
+ && $(MAKE) $(AM_MAKEFLAGS) \
621
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
622
+ && $(MAKE) $(AM_MAKEFLAGS) check \
623
+ && $(MAKE) $(AM_MAKEFLAGS) install \
624
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
625
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
626
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
627
+ distuninstallcheck \
628
+ && chmod -R a-w "$$dc_install_base" \
629
+ && ({ \
630
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
631
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
632
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
633
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
634
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
635
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
636
+ && rm -rf "$$dc_destdir" \
637
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
638
+ && rm -rf $(DIST_ARCHIVES) \
639
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
640
+ && cd "$$am__cwd" \
641
+ || exit 1
642
+ $(am__remove_distdir)
643
+ @(echo "$(distdir) archives ready for distribution: "; \
644
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
645
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
646
+ distuninstallcheck:
647
+ @test -n '$(distuninstallcheck_dir)' || { \
648
+ echo 'ERROR: trying to run $@ with an empty' \
649
+ '$$(distuninstallcheck_dir)' >&2; \
650
+ exit 1; \
651
+ }; \
652
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
653
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
654
+ exit 1; \
655
+ }; \
656
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
657
+ || { echo "ERROR: files left after uninstall:" ; \
658
+ if test -n "$(DESTDIR)"; then \
659
+ echo " (check DESTDIR support)"; \
660
+ fi ; \
661
+ $(distuninstallcheck_listfiles) ; \
662
+ exit 1; } >&2
663
+ distcleancheck: distclean
664
+ @if test '$(srcdir)' = . ; then \
665
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
666
+ exit 1 ; \
667
+ fi
668
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
669
+ || { echo "ERROR: files left in build directory after distclean:" ; \
670
+ $(distcleancheck_listfiles) ; \
671
+ exit 1; } >&2
672
+ check-am: all-am
673
+ check: check-recursive
674
+ all-am: Makefile $(DATA)
675
+ installdirs: installdirs-recursive
676
+ installdirs-am:
677
+ for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
678
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
679
+ done
680
+ install: install-recursive
681
+ install-exec: install-exec-recursive
682
+ install-data: install-data-recursive
683
+ uninstall: uninstall-recursive
684
+
685
+ install-am: all-am
686
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
687
+
688
+ installcheck: installcheck-recursive
689
+ install-strip:
690
+ if test -z '$(STRIP)'; then \
691
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
692
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
693
+ install; \
694
+ else \
695
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
696
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
697
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
698
+ fi
699
+ mostlyclean-generic:
700
+
701
+ clean-generic:
702
+
703
+ distclean-generic:
704
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
705
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
706
+
707
+ maintainer-clean-generic:
708
+ @echo "This command is intended for maintainers to use"
709
+ @echo "it deletes files that may require special tools to rebuild."
710
+ clean: clean-recursive
711
+
712
+ clean-am: clean-generic clean-libtool mostlyclean-am
713
+
714
+ distclean: distclean-recursive
715
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
716
+ -rm -f Makefile
717
+ distclean-am: clean-am distclean-generic distclean-libtool \
718
+ distclean-tags
719
+
720
+ dvi: dvi-recursive
721
+
722
+ dvi-am:
723
+
724
+ html: html-recursive
725
+
726
+ html-am:
727
+
728
+ info: info-recursive
729
+
730
+ info-am:
731
+
732
+ install-data-am: install-pkgconfigDATA
733
+
734
+ install-dvi: install-dvi-recursive
735
+
736
+ install-dvi-am:
737
+
738
+ install-exec-am:
739
+
740
+ install-html: install-html-recursive
741
+
742
+ install-html-am:
743
+
744
+ install-info: install-info-recursive
745
+
746
+ install-info-am:
747
+
748
+ install-man:
749
+
750
+ install-pdf: install-pdf-recursive
751
+
752
+ install-pdf-am:
753
+
754
+ install-ps: install-ps-recursive
755
+
756
+ install-ps-am:
757
+
758
+ installcheck-am:
759
+
760
+ maintainer-clean: maintainer-clean-recursive
761
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
762
+ -rm -rf $(top_srcdir)/autom4te.cache
763
+ -rm -f Makefile
764
+ maintainer-clean-am: distclean-am maintainer-clean-generic
765
+
766
+ mostlyclean: mostlyclean-recursive
767
+
768
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
769
+
770
+ pdf: pdf-recursive
771
+
772
+ pdf-am:
773
+
774
+ ps: ps-recursive
775
+
776
+ ps-am:
777
+
778
+ uninstall-am: uninstall-pkgconfigDATA
779
+
780
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
781
+ install-am install-strip tags-recursive
782
+
783
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
784
+ all all-am am--refresh check check-am clean clean-generic \
785
+ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
786
+ dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
787
+ dist-zip distcheck distclean distclean-generic \
788
+ distclean-libtool distclean-tags distcleancheck distdir \
789
+ distuninstallcheck dvi dvi-am html html-am info info-am \
790
+ install install-am install-data install-data-am install-dvi \
791
+ install-dvi-am install-exec install-exec-am install-html \
792
+ install-html-am install-info install-info-am install-man \
793
+ install-pdf install-pdf-am install-pkgconfigDATA install-ps \
794
+ install-ps-am install-strip installcheck installcheck-am \
795
+ installdirs installdirs-am maintainer-clean \
796
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
797
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
798
+ uninstall uninstall-am uninstall-pkgconfigDATA
799
+
800
+
801
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
802
+ # Otherwise a system limit (for SysV at least) may be exceeded.
803
+ .NOEXPORT: