melisa 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +53 -4
  3. data/ext/extconf.rb +33 -0
  4. data/ext/marisa-0.2.4/AUTHORS +1 -0
  5. data/ext/marisa-0.2.4/COPYING +32 -0
  6. data/ext/marisa-0.2.4/ChangeLog +0 -0
  7. data/ext/marisa-0.2.4/INSTALL +237 -0
  8. data/ext/marisa-0.2.4/Makefile.am +24 -0
  9. data/ext/marisa-0.2.4/Makefile.in +803 -0
  10. data/ext/marisa-0.2.4/NEWS +0 -0
  11. data/ext/marisa-0.2.4/README +63 -0
  12. data/ext/marisa-0.2.4/aclocal.m4 +976 -0
  13. data/ext/marisa-0.2.4/bindings/Makefile +16 -0
  14. data/ext/{marisa → marisa-0.2.4}/bindings/marisa-swig.cxx +0 -0
  15. data/ext/{marisa → marisa-0.2.4}/bindings/marisa-swig.h +0 -0
  16. data/ext/marisa-0.2.4/bindings/marisa-swig.i +28 -0
  17. data/ext/marisa-0.2.4/bindings/perl/Makefile.PL +7 -0
  18. data/ext/{marisa → marisa-0.2.4}/bindings/perl/marisa-swig.cxx +0 -0
  19. data/ext/{marisa → marisa-0.2.4}/bindings/perl/marisa-swig.h +0 -0
  20. data/ext/{marisa → marisa-0.2.4}/bindings/perl/marisa-swig_wrap.cxx +0 -0
  21. data/ext/marisa-0.2.4/bindings/perl/marisa.pm +297 -0
  22. data/ext/marisa-0.2.4/bindings/perl/sample.dic +0 -0
  23. data/ext/marisa-0.2.4/bindings/perl/sample.pl +62 -0
  24. data/ext/{marisa → marisa-0.2.4}/bindings/python/marisa-swig.cxx +0 -0
  25. data/ext/{marisa → marisa-0.2.4}/bindings/python/marisa-swig.h +0 -0
  26. data/ext/{marisa → marisa-0.2.4}/bindings/python/marisa-swig_wrap.cxx +0 -0
  27. data/ext/marisa-0.2.4/bindings/python/marisa.py +206 -0
  28. data/ext/marisa-0.2.4/bindings/python/sample.dic +0 -0
  29. data/ext/marisa-0.2.4/bindings/python/sample.py +57 -0
  30. data/ext/marisa-0.2.4/bindings/python/setup.py +9 -0
  31. data/ext/marisa-0.2.4/config.guess +1530 -0
  32. data/ext/marisa-0.2.4/config.sub +1773 -0
  33. data/ext/marisa-0.2.4/configure +17636 -0
  34. data/ext/marisa-0.2.4/configure.ac +172 -0
  35. data/ext/marisa-0.2.4/depcomp +688 -0
  36. data/ext/marisa-0.2.4/docs/readme.en.html +740 -0
  37. data/ext/marisa-0.2.4/docs/readme.ja.html +750 -0
  38. data/ext/marisa-0.2.4/docs/style.css +245 -0
  39. data/ext/marisa-0.2.4/install-sh +520 -0
  40. data/ext/marisa-0.2.4/lib/Makefile.am +57 -0
  41. data/ext/marisa-0.2.4/lib/Makefile.in +701 -0
  42. data/ext/{marisa → marisa-0.2.4}/lib/marisa.h +0 -0
  43. data/ext/{marisa → marisa-0.2.4}/lib/marisa/agent.cc +2 -2
  44. data/ext/{marisa → marisa-0.2.4}/lib/marisa/agent.h +2 -2
  45. data/ext/{marisa → marisa-0.2.4}/lib/marisa/base.h +3 -3
  46. data/ext/{marisa → marisa-0.2.4}/lib/marisa/exception.h +1 -1
  47. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/algorithm.h +1 -1
  48. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/algorithm/sort.h +1 -1
  49. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/intrin.h +1 -1
  50. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io.h +3 -3
  51. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/mapper.cc +1 -1
  52. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/mapper.h +1 -1
  53. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/reader.cc +1 -1
  54. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/reader.h +1 -1
  55. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/writer.cc +1 -1
  56. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/io/writer.h +1 -1
  57. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie.h +2 -2
  58. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/cache.h +1 -1
  59. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/config.h +1 -1
  60. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/entry.h +1 -1
  61. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/header.h +1 -1
  62. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/history.h +1 -1
  63. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/key.h +1 -1
  64. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/louds-trie.cc +5 -5
  65. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/louds-trie.h +7 -7
  66. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/range.h +1 -1
  67. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/state.h +2 -2
  68. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/tail.cc +3 -3
  69. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/trie/tail.h +3 -3
  70. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector.h +3 -3
  71. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/bit-vector.cc +2 -2
  72. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/bit-vector.h +2 -2
  73. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/flat-vector.h +1 -1
  74. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/pop-count.h +1 -1
  75. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/rank-index.h +1 -1
  76. data/ext/{marisa → marisa-0.2.4}/lib/marisa/grimoire/vector/vector.h +1 -1
  77. data/ext/{marisa → marisa-0.2.4}/lib/marisa/iostream.h +0 -0
  78. data/ext/{marisa → marisa-0.2.4}/lib/marisa/key.h +1 -1
  79. data/ext/{marisa → marisa-0.2.4}/lib/marisa/keyset.cc +1 -1
  80. data/ext/{marisa → marisa-0.2.4}/lib/marisa/keyset.h +1 -1
  81. data/ext/{marisa → marisa-0.2.4}/lib/marisa/query.h +1 -1
  82. data/ext/{marisa → marisa-0.2.4}/lib/marisa/scoped-array.h +1 -1
  83. data/ext/{marisa → marisa-0.2.4}/lib/marisa/scoped-ptr.h +1 -1
  84. data/ext/{marisa → marisa-0.2.4}/lib/marisa/stdio.h +0 -0
  85. data/ext/{marisa → marisa-0.2.4}/lib/marisa/trie.cc +4 -4
  86. data/ext/{marisa → marisa-0.2.4}/lib/marisa/trie.h +2 -2
  87. data/ext/marisa-0.2.4/ltmain.sh +9661 -0
  88. data/ext/marisa-0.2.4/m4/libtool.m4 +8001 -0
  89. data/ext/marisa-0.2.4/m4/ltoptions.m4 +384 -0
  90. data/ext/marisa-0.2.4/m4/ltsugar.m4 +123 -0
  91. data/ext/marisa-0.2.4/m4/ltversion.m4 +23 -0
  92. data/ext/marisa-0.2.4/m4/lt~obsolete.m4 +98 -0
  93. data/ext/marisa-0.2.4/marisa.pc.in +11 -0
  94. data/ext/marisa-0.2.4/missing +331 -0
  95. data/ext/marisa-0.2.4/mkmf.log +288 -0
  96. data/ext/marisa-0.2.4/pkg/bin/marisa-benchmark +0 -0
  97. data/ext/marisa-0.2.4/pkg/bin/marisa-build +0 -0
  98. data/ext/marisa-0.2.4/pkg/bin/marisa-common-prefix-search +0 -0
  99. data/ext/marisa-0.2.4/pkg/bin/marisa-dump +0 -0
  100. data/ext/marisa-0.2.4/pkg/bin/marisa-lookup +0 -0
  101. data/ext/marisa-0.2.4/pkg/bin/marisa-predictive-search +0 -0
  102. data/ext/marisa-0.2.4/pkg/bin/marisa-reverse-lookup +0 -0
  103. data/ext/marisa-0.2.4/pkg/include/marisa.h +14 -0
  104. data/ext/marisa-0.2.4/pkg/include/marisa/agent.h +73 -0
  105. data/ext/marisa-0.2.4/pkg/include/marisa/base.h +193 -0
  106. data/ext/marisa-0.2.4/pkg/include/marisa/exception.h +82 -0
  107. data/ext/marisa-0.2.4/pkg/include/marisa/iostream.h +18 -0
  108. data/ext/marisa-0.2.4/pkg/include/marisa/key.h +85 -0
  109. data/ext/marisa-0.2.4/pkg/include/marisa/keyset.h +80 -0
  110. data/ext/marisa-0.2.4/pkg/include/marisa/query.h +71 -0
  111. data/ext/marisa-0.2.4/pkg/include/marisa/scoped-array.h +48 -0
  112. data/ext/marisa-0.2.4/pkg/include/marisa/scoped-ptr.h +52 -0
  113. data/ext/marisa-0.2.4/pkg/include/marisa/stdio.h +15 -0
  114. data/ext/marisa-0.2.4/pkg/include/marisa/trie.h +64 -0
  115. data/ext/marisa-0.2.4/pkg/lib/libmarisa.0.dylib +0 -0
  116. data/ext/marisa-0.2.4/pkg/lib/libmarisa.a +0 -0
  117. data/ext/marisa-0.2.4/pkg/lib/libmarisa.dylib +0 -0
  118. data/ext/marisa-0.2.4/pkg/lib/libmarisa.la +41 -0
  119. data/ext/marisa-0.2.4/pkg/lib/pkgconfig/marisa.pc +11 -0
  120. data/ext/marisa-0.2.4/tests/Makefile.am +27 -0
  121. data/ext/marisa-0.2.4/tests/Makefile.in +624 -0
  122. data/ext/{marisa → marisa-0.2.4}/tests/base-test.cc +0 -0
  123. data/ext/{marisa → marisa-0.2.4}/tests/io-test.cc +0 -0
  124. data/ext/{marisa → marisa-0.2.4}/tests/marisa-assert.h +0 -0
  125. data/ext/{marisa → marisa-0.2.4}/tests/marisa-test.cc +0 -0
  126. data/ext/{marisa → marisa-0.2.4}/tests/trie-test.cc +0 -0
  127. data/ext/{marisa → marisa-0.2.4}/tests/vector-test.cc +0 -0
  128. data/ext/marisa-0.2.4/tools/Makefile.am +39 -0
  129. data/ext/marisa-0.2.4/tools/Makefile.in +616 -0
  130. data/ext/{marisa → marisa-0.2.4}/tools/cmdopt.cc +0 -0
  131. data/ext/{marisa → marisa-0.2.4}/tools/cmdopt.h +0 -0
  132. data/ext/{marisa → marisa-0.2.4}/tools/marisa-benchmark.cc +0 -0
  133. data/ext/{marisa → marisa-0.2.4}/tools/marisa-build.cc +0 -0
  134. data/ext/{marisa → marisa-0.2.4}/tools/marisa-common-prefix-search.cc +0 -0
  135. data/ext/{marisa → marisa-0.2.4}/tools/marisa-dump.cc +0 -0
  136. data/ext/{marisa → marisa-0.2.4}/tools/marisa-lookup.cc +0 -0
  137. data/ext/{marisa → marisa-0.2.4}/tools/marisa-predictive-search.cc +0 -0
  138. data/ext/{marisa → marisa-0.2.4}/tools/marisa-reverse-lookup.cc +0 -0
  139. data/ext/marisa-0.2.4/vs2008/base-test/base-test.vcproj +200 -0
  140. data/ext/marisa-0.2.4/vs2008/io-test/io-test.vcproj +199 -0
  141. data/ext/marisa-0.2.4/vs2008/libmarisa/libmarisa.vcproj +347 -0
  142. data/ext/marisa-0.2.4/vs2008/marisa-benchmark/marisa-benchmark.vcproj +203 -0
  143. data/ext/marisa-0.2.4/vs2008/marisa-build/marisa-build.vcproj +203 -0
  144. data/ext/marisa-0.2.4/vs2008/marisa-common-prefix-search/marisa-common-prefix-search.vcproj +203 -0
  145. data/ext/marisa-0.2.4/vs2008/marisa-dump/marisa-dump.vcproj +203 -0
  146. data/ext/marisa-0.2.4/vs2008/marisa-lookup/marisa-lookup.vcproj +203 -0
  147. data/ext/marisa-0.2.4/vs2008/marisa-predictive-search/marisa-predictive-search.vcproj +203 -0
  148. data/ext/marisa-0.2.4/vs2008/marisa-reverse-lookup/marisa-reverse-lookup.vcproj +203 -0
  149. data/ext/marisa-0.2.4/vs2008/marisa-test/marisa-test.vcproj +199 -0
  150. data/ext/marisa-0.2.4/vs2008/trie-test/trie-test.vcproj +199 -0
  151. data/ext/marisa-0.2.4/vs2008/vector-test/vector-test.vcproj +199 -0
  152. data/ext/marisa-0.2.4/vs2008/vs2008.sln +123 -0
  153. data/ext/marisa-0.2.4/vs2008/vs2008.suo +0 -0
  154. data/ext/{marisa/bindings/ruby/marisa-swig.cxx → marisa-swig.cxx} +0 -0
  155. data/ext/{marisa/bindings/ruby/marisa-swig.h → marisa-swig.h} +0 -0
  156. data/ext/{marisa/bindings/ruby/marisa-swig_wrap.cxx → marisa-swig_wrap.cxx} +0 -0
  157. data/lib/melisa/bytes_trie.rb +5 -0
  158. data/lib/melisa/trie.rb +2 -0
  159. data/lib/melisa/version.rb +1 -1
  160. data/melisa.gemspec +7 -9
  161. data/spec/bytes_trie_spec.rb +6 -1
  162. data/spec/int_trie_spec.rb +5 -0
  163. data/spec/search_spec.rb +6 -7
  164. data/spec/trie_spec.rb +4 -4
  165. metadata +178 -121
  166. data/ext/marisa/bindings/ruby/extconf.rb +0 -5
@@ -0,0 +1,57 @@
1
+ AM_CXXFLAGS = -Wall -Weffc++ -Wextra
2
+ #AM_CXXFLAGS = -Wall -Weffc++ -Wextra -D_DEBUG
3
+
4
+ lib_LTLIBRARIES = libmarisa.la
5
+
6
+ libmarisa_la_SOURCES = \
7
+ marisa/keyset.cc \
8
+ marisa/agent.cc \
9
+ marisa/trie.cc \
10
+ marisa/grimoire/io/mapper.cc \
11
+ marisa/grimoire/io/reader.cc \
12
+ marisa/grimoire/io/writer.cc \
13
+ marisa/grimoire/vector/bit-vector.cc \
14
+ marisa/grimoire/trie/tail.cc \
15
+ marisa/grimoire/trie/louds-trie.cc
16
+
17
+ include_HEADERS = marisa.h
18
+
19
+ libmarisa_includedir = ${includedir}/marisa
20
+ libmarisa_include_HEADERS = \
21
+ marisa/base.h \
22
+ marisa/exception.h \
23
+ marisa/scoped-ptr.h \
24
+ marisa/scoped-array.h \
25
+ marisa/key.h \
26
+ marisa/keyset.h \
27
+ marisa/query.h \
28
+ marisa/agent.h \
29
+ marisa/stdio.h \
30
+ marisa/iostream.h \
31
+ marisa/trie.h
32
+
33
+ noinst_HEADERS = \
34
+ marisa/grimoire/intrin.h \
35
+ marisa/grimoire/io.h \
36
+ marisa/grimoire/io/mapper.h \
37
+ marisa/grimoire/io/reader.h \
38
+ marisa/grimoire/io/writer.h \
39
+ marisa/grimoire/vector.h \
40
+ marisa/grimoire/vector/pop-count.h \
41
+ marisa/grimoire/vector/rank-index.h \
42
+ marisa/grimoire/vector/vector.h \
43
+ marisa/grimoire/vector/flat-vector.h \
44
+ marisa/grimoire/vector/bit-vector.h \
45
+ marisa/grimoire/algorithm.h \
46
+ marisa/grimoire/algorithm/sort.h \
47
+ marisa/grimoire/trie.h \
48
+ marisa/grimoire/trie/config.h \
49
+ marisa/grimoire/trie/header.h \
50
+ marisa/grimoire/trie/key.h \
51
+ marisa/grimoire/trie/range.h \
52
+ marisa/grimoire/trie/entry.h \
53
+ marisa/grimoire/trie/tail.h \
54
+ marisa/grimoire/trie/cache.h \
55
+ marisa/grimoire/trie/history.h \
56
+ marisa/grimoire/trie/state.h \
57
+ marisa/grimoire/trie/louds-trie.h
@@ -0,0 +1,701 @@
1
+ # Makefile.in generated by automake 1.11.3 from Makefile.am.
2
+ # @configure_input@
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
+ @SET_MAKE@
17
+
18
+
19
+ VPATH = @srcdir@
20
+ pkgdatadir = $(datadir)/@PACKAGE@
21
+ pkgincludedir = $(includedir)/@PACKAGE@
22
+ pkglibdir = $(libdir)/@PACKAGE@
23
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
24
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
25
+ install_sh_DATA = $(install_sh) -c -m 644
26
+ install_sh_PROGRAM = $(install_sh) -c
27
+ install_sh_SCRIPT = $(install_sh) -c
28
+ INSTALL_HEADER = $(INSTALL_DATA)
29
+ transform = $(program_transform_name)
30
+ NORMAL_INSTALL = :
31
+ PRE_INSTALL = :
32
+ POST_INSTALL = :
33
+ NORMAL_UNINSTALL = :
34
+ PRE_UNINSTALL = :
35
+ POST_UNINSTALL = :
36
+ build_triplet = @build@
37
+ host_triplet = @host@
38
+ subdir = lib
39
+ DIST_COMMON = $(include_HEADERS) $(libmarisa_include_HEADERS) \
40
+ $(noinst_HEADERS) $(srcdir)/Makefile.am $(srcdir)/Makefile.in
41
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
43
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
44
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
45
+ $(top_srcdir)/configure.ac
46
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
47
+ $(ACLOCAL_M4)
48
+ mkinstalldirs = $(install_sh) -d
49
+ CONFIG_CLEAN_FILES =
50
+ CONFIG_CLEAN_VPATH_FILES =
51
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
52
+ am__vpath_adj = case $$p in \
53
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
54
+ *) f=$$p;; \
55
+ esac;
56
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
57
+ am__install_max = 40
58
+ am__nobase_strip_setup = \
59
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
60
+ am__nobase_strip = \
61
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
62
+ am__nobase_list = $(am__nobase_strip_setup); \
63
+ for p in $$list; do echo "$$p $$p"; done | \
64
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
65
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
66
+ if (++n[$$2] == $(am__install_max)) \
67
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
68
+ END { for (dir in files) print dir, files[dir] }'
69
+ am__base_list = \
70
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
71
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
72
+ am__uninstall_files_from_dir = { \
73
+ test -z "$$files" \
74
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
75
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
76
+ $(am__cd) "$$dir" && rm -f $$files; }; \
77
+ }
78
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" \
79
+ "$(DESTDIR)$(libmarisa_includedir)"
80
+ LTLIBRARIES = $(lib_LTLIBRARIES)
81
+ libmarisa_la_LIBADD =
82
+ am_libmarisa_la_OBJECTS = keyset.lo agent.lo trie.lo mapper.lo \
83
+ reader.lo writer.lo bit-vector.lo tail.lo louds-trie.lo
84
+ libmarisa_la_OBJECTS = $(am_libmarisa_la_OBJECTS)
85
+ DEFAULT_INCLUDES = -I.@am__isrc@
86
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
87
+ am__depfiles_maybe = depfiles
88
+ am__mv = mv -f
89
+ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
90
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
91
+ LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
92
+ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
93
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
94
+ CXXLD = $(CXX)
95
+ CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
96
+ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
97
+ $(LDFLAGS) -o $@
98
+ SOURCES = $(libmarisa_la_SOURCES)
99
+ DIST_SOURCES = $(libmarisa_la_SOURCES)
100
+ HEADERS = $(include_HEADERS) $(libmarisa_include_HEADERS) \
101
+ $(noinst_HEADERS)
102
+ ETAGS = etags
103
+ CTAGS = ctags
104
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
105
+ ACLOCAL = @ACLOCAL@
106
+ AMTAR = @AMTAR@
107
+ AR = @AR@
108
+ AUTOCONF = @AUTOCONF@
109
+ AUTOHEADER = @AUTOHEADER@
110
+ AUTOMAKE = @AUTOMAKE@
111
+ AWK = @AWK@
112
+ CC = @CC@
113
+ CCDEPMODE = @CCDEPMODE@
114
+ CFLAGS = @CFLAGS@
115
+ CPP = @CPP@
116
+ CPPFLAGS = @CPPFLAGS@
117
+ CXX = @CXX@
118
+ CXXCPP = @CXXCPP@
119
+ CXXDEPMODE = @CXXDEPMODE@
120
+ CXXFLAGS = @CXXFLAGS@
121
+ CYGPATH_W = @CYGPATH_W@
122
+ DEFS = @DEFS@
123
+ DEPDIR = @DEPDIR@
124
+ DLLTOOL = @DLLTOOL@
125
+ DSYMUTIL = @DSYMUTIL@
126
+ DUMPBIN = @DUMPBIN@
127
+ ECHO_C = @ECHO_C@
128
+ ECHO_N = @ECHO_N@
129
+ ECHO_T = @ECHO_T@
130
+ EGREP = @EGREP@
131
+ EXEEXT = @EXEEXT@
132
+ FGREP = @FGREP@
133
+ GREP = @GREP@
134
+ INSTALL = @INSTALL@
135
+ INSTALL_DATA = @INSTALL_DATA@
136
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
137
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
138
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
139
+ LD = @LD@
140
+ LDFLAGS = @LDFLAGS@
141
+ LIBOBJS = @LIBOBJS@
142
+ LIBS = @LIBS@
143
+ LIBTOOL = @LIBTOOL@
144
+ LIPO = @LIPO@
145
+ LN_S = @LN_S@
146
+ LTLIBOBJS = @LTLIBOBJS@
147
+ MAKEINFO = @MAKEINFO@
148
+ MANIFEST_TOOL = @MANIFEST_TOOL@
149
+ MKDIR_P = @MKDIR_P@
150
+ NM = @NM@
151
+ NMEDIT = @NMEDIT@
152
+ OBJDUMP = @OBJDUMP@
153
+ OBJEXT = @OBJEXT@
154
+ OTOOL = @OTOOL@
155
+ OTOOL64 = @OTOOL64@
156
+ PACKAGE = @PACKAGE@
157
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
158
+ PACKAGE_NAME = @PACKAGE_NAME@
159
+ PACKAGE_STRING = @PACKAGE_STRING@
160
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
161
+ PACKAGE_URL = @PACKAGE_URL@
162
+ PACKAGE_VERSION = @PACKAGE_VERSION@
163
+ PATH_SEPARATOR = @PATH_SEPARATOR@
164
+ RANLIB = @RANLIB@
165
+ SED = @SED@
166
+ SET_MAKE = @SET_MAKE@
167
+ SHELL = @SHELL@
168
+ STRIP = @STRIP@
169
+ VERSION = @VERSION@
170
+ abs_builddir = @abs_builddir@
171
+ abs_srcdir = @abs_srcdir@
172
+ abs_top_builddir = @abs_top_builddir@
173
+ abs_top_srcdir = @abs_top_srcdir@
174
+ ac_ct_AR = @ac_ct_AR@
175
+ ac_ct_CC = @ac_ct_CC@
176
+ ac_ct_CXX = @ac_ct_CXX@
177
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
178
+ am__include = @am__include@
179
+ am__leading_dot = @am__leading_dot@
180
+ am__quote = @am__quote@
181
+ am__tar = @am__tar@
182
+ am__untar = @am__untar@
183
+ bindir = @bindir@
184
+ build = @build@
185
+ build_alias = @build_alias@
186
+ build_cpu = @build_cpu@
187
+ build_os = @build_os@
188
+ build_vendor = @build_vendor@
189
+ builddir = @builddir@
190
+ datadir = @datadir@
191
+ datarootdir = @datarootdir@
192
+ docdir = @docdir@
193
+ dvidir = @dvidir@
194
+ exec_prefix = @exec_prefix@
195
+ host = @host@
196
+ host_alias = @host_alias@
197
+ host_cpu = @host_cpu@
198
+ host_os = @host_os@
199
+ host_vendor = @host_vendor@
200
+ htmldir = @htmldir@
201
+ includedir = @includedir@
202
+ infodir = @infodir@
203
+ install_sh = @install_sh@
204
+ libdir = @libdir@
205
+ libexecdir = @libexecdir@
206
+ localedir = @localedir@
207
+ localstatedir = @localstatedir@
208
+ mandir = @mandir@
209
+ mkdir_p = @mkdir_p@
210
+ oldincludedir = @oldincludedir@
211
+ pdfdir = @pdfdir@
212
+ prefix = @prefix@
213
+ program_transform_name = @program_transform_name@
214
+ psdir = @psdir@
215
+ sbindir = @sbindir@
216
+ sharedstatedir = @sharedstatedir@
217
+ srcdir = @srcdir@
218
+ sysconfdir = @sysconfdir@
219
+ target_alias = @target_alias@
220
+ top_build_prefix = @top_build_prefix@
221
+ top_builddir = @top_builddir@
222
+ top_srcdir = @top_srcdir@
223
+ AM_CXXFLAGS = -Wall -Weffc++ -Wextra
224
+ #AM_CXXFLAGS = -Wall -Weffc++ -Wextra -D_DEBUG
225
+ lib_LTLIBRARIES = libmarisa.la
226
+ libmarisa_la_SOURCES = \
227
+ marisa/keyset.cc \
228
+ marisa/agent.cc \
229
+ marisa/trie.cc \
230
+ marisa/grimoire/io/mapper.cc \
231
+ marisa/grimoire/io/reader.cc \
232
+ marisa/grimoire/io/writer.cc \
233
+ marisa/grimoire/vector/bit-vector.cc \
234
+ marisa/grimoire/trie/tail.cc \
235
+ marisa/grimoire/trie/louds-trie.cc
236
+
237
+ include_HEADERS = marisa.h
238
+ libmarisa_includedir = ${includedir}/marisa
239
+ libmarisa_include_HEADERS = \
240
+ marisa/base.h \
241
+ marisa/exception.h \
242
+ marisa/scoped-ptr.h \
243
+ marisa/scoped-array.h \
244
+ marisa/key.h \
245
+ marisa/keyset.h \
246
+ marisa/query.h \
247
+ marisa/agent.h \
248
+ marisa/stdio.h \
249
+ marisa/iostream.h \
250
+ marisa/trie.h
251
+
252
+ noinst_HEADERS = \
253
+ marisa/grimoire/intrin.h \
254
+ marisa/grimoire/io.h \
255
+ marisa/grimoire/io/mapper.h \
256
+ marisa/grimoire/io/reader.h \
257
+ marisa/grimoire/io/writer.h \
258
+ marisa/grimoire/vector.h \
259
+ marisa/grimoire/vector/pop-count.h \
260
+ marisa/grimoire/vector/rank-index.h \
261
+ marisa/grimoire/vector/vector.h \
262
+ marisa/grimoire/vector/flat-vector.h \
263
+ marisa/grimoire/vector/bit-vector.h \
264
+ marisa/grimoire/algorithm.h \
265
+ marisa/grimoire/algorithm/sort.h \
266
+ marisa/grimoire/trie.h \
267
+ marisa/grimoire/trie/config.h \
268
+ marisa/grimoire/trie/header.h \
269
+ marisa/grimoire/trie/key.h \
270
+ marisa/grimoire/trie/range.h \
271
+ marisa/grimoire/trie/entry.h \
272
+ marisa/grimoire/trie/tail.h \
273
+ marisa/grimoire/trie/cache.h \
274
+ marisa/grimoire/trie/history.h \
275
+ marisa/grimoire/trie/state.h \
276
+ marisa/grimoire/trie/louds-trie.h
277
+
278
+ all: all-am
279
+
280
+ .SUFFIXES:
281
+ .SUFFIXES: .cc .lo .o .obj
282
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
283
+ @for dep in $?; do \
284
+ case '$(am__configure_deps)' in \
285
+ *$$dep*) \
286
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
287
+ && { if test -f $@; then exit 0; else break; fi; }; \
288
+ exit 1;; \
289
+ esac; \
290
+ done; \
291
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile'; \
292
+ $(am__cd) $(top_srcdir) && \
293
+ $(AUTOMAKE) --gnu lib/Makefile
294
+ .PRECIOUS: Makefile
295
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
296
+ @case '$?' in \
297
+ *config.status*) \
298
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
299
+ *) \
300
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
301
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
302
+ esac;
303
+
304
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
305
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
306
+
307
+ $(top_srcdir)/configure: $(am__configure_deps)
308
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
309
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
310
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
311
+ $(am__aclocal_m4_deps):
312
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
313
+ @$(NORMAL_INSTALL)
314
+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
315
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
316
+ list2=; for p in $$list; do \
317
+ if test -f $$p; then \
318
+ list2="$$list2 $$p"; \
319
+ else :; fi; \
320
+ done; \
321
+ test -z "$$list2" || { \
322
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
323
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
324
+ }
325
+
326
+ uninstall-libLTLIBRARIES:
327
+ @$(NORMAL_UNINSTALL)
328
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
329
+ for p in $$list; do \
330
+ $(am__strip_dir) \
331
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
332
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
333
+ done
334
+
335
+ clean-libLTLIBRARIES:
336
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
337
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
338
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
339
+ test "$$dir" != "$$p" || dir=.; \
340
+ echo "rm -f \"$${dir}/so_locations\""; \
341
+ rm -f "$${dir}/so_locations"; \
342
+ done
343
+ libmarisa.la: $(libmarisa_la_OBJECTS) $(libmarisa_la_DEPENDENCIES) $(EXTRA_libmarisa_la_DEPENDENCIES)
344
+ $(CXXLINK) -rpath $(libdir) $(libmarisa_la_OBJECTS) $(libmarisa_la_LIBADD) $(LIBS)
345
+
346
+ mostlyclean-compile:
347
+ -rm -f *.$(OBJEXT)
348
+
349
+ distclean-compile:
350
+ -rm -f *.tab.c
351
+
352
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/agent.Plo@am__quote@
353
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bit-vector.Plo@am__quote@
354
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keyset.Plo@am__quote@
355
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/louds-trie.Plo@am__quote@
356
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapper.Plo@am__quote@
357
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reader.Plo@am__quote@
358
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tail.Plo@am__quote@
359
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trie.Plo@am__quote@
360
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writer.Plo@am__quote@
361
+
362
+ .cc.o:
363
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
364
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
365
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
366
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
367
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
368
+
369
+ .cc.obj:
370
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
371
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
372
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
373
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
374
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
375
+
376
+ .cc.lo:
377
+ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
378
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
379
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
380
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
381
+ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
382
+
383
+ keyset.lo: marisa/keyset.cc
384
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT keyset.lo -MD -MP -MF $(DEPDIR)/keyset.Tpo -c -o keyset.lo `test -f 'marisa/keyset.cc' || echo '$(srcdir)/'`marisa/keyset.cc
385
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/keyset.Tpo $(DEPDIR)/keyset.Plo
386
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/keyset.cc' object='keyset.lo' libtool=yes @AMDEPBACKSLASH@
387
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
388
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o keyset.lo `test -f 'marisa/keyset.cc' || echo '$(srcdir)/'`marisa/keyset.cc
389
+
390
+ agent.lo: marisa/agent.cc
391
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT agent.lo -MD -MP -MF $(DEPDIR)/agent.Tpo -c -o agent.lo `test -f 'marisa/agent.cc' || echo '$(srcdir)/'`marisa/agent.cc
392
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/agent.Tpo $(DEPDIR)/agent.Plo
393
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/agent.cc' object='agent.lo' libtool=yes @AMDEPBACKSLASH@
394
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
395
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o agent.lo `test -f 'marisa/agent.cc' || echo '$(srcdir)/'`marisa/agent.cc
396
+
397
+ trie.lo: marisa/trie.cc
398
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT trie.lo -MD -MP -MF $(DEPDIR)/trie.Tpo -c -o trie.lo `test -f 'marisa/trie.cc' || echo '$(srcdir)/'`marisa/trie.cc
399
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/trie.Tpo $(DEPDIR)/trie.Plo
400
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/trie.cc' object='trie.lo' libtool=yes @AMDEPBACKSLASH@
401
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
402
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o trie.lo `test -f 'marisa/trie.cc' || echo '$(srcdir)/'`marisa/trie.cc
403
+
404
+ mapper.lo: marisa/grimoire/io/mapper.cc
405
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mapper.lo -MD -MP -MF $(DEPDIR)/mapper.Tpo -c -o mapper.lo `test -f 'marisa/grimoire/io/mapper.cc' || echo '$(srcdir)/'`marisa/grimoire/io/mapper.cc
406
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mapper.Tpo $(DEPDIR)/mapper.Plo
407
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/io/mapper.cc' object='mapper.lo' libtool=yes @AMDEPBACKSLASH@
408
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
409
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mapper.lo `test -f 'marisa/grimoire/io/mapper.cc' || echo '$(srcdir)/'`marisa/grimoire/io/mapper.cc
410
+
411
+ reader.lo: marisa/grimoire/io/reader.cc
412
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT reader.lo -MD -MP -MF $(DEPDIR)/reader.Tpo -c -o reader.lo `test -f 'marisa/grimoire/io/reader.cc' || echo '$(srcdir)/'`marisa/grimoire/io/reader.cc
413
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/reader.Tpo $(DEPDIR)/reader.Plo
414
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/io/reader.cc' object='reader.lo' libtool=yes @AMDEPBACKSLASH@
415
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
416
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o reader.lo `test -f 'marisa/grimoire/io/reader.cc' || echo '$(srcdir)/'`marisa/grimoire/io/reader.cc
417
+
418
+ writer.lo: marisa/grimoire/io/writer.cc
419
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT writer.lo -MD -MP -MF $(DEPDIR)/writer.Tpo -c -o writer.lo `test -f 'marisa/grimoire/io/writer.cc' || echo '$(srcdir)/'`marisa/grimoire/io/writer.cc
420
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/writer.Tpo $(DEPDIR)/writer.Plo
421
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/io/writer.cc' object='writer.lo' libtool=yes @AMDEPBACKSLASH@
422
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
423
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o writer.lo `test -f 'marisa/grimoire/io/writer.cc' || echo '$(srcdir)/'`marisa/grimoire/io/writer.cc
424
+
425
+ bit-vector.lo: marisa/grimoire/vector/bit-vector.cc
426
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT bit-vector.lo -MD -MP -MF $(DEPDIR)/bit-vector.Tpo -c -o bit-vector.lo `test -f 'marisa/grimoire/vector/bit-vector.cc' || echo '$(srcdir)/'`marisa/grimoire/vector/bit-vector.cc
427
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/bit-vector.Tpo $(DEPDIR)/bit-vector.Plo
428
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/vector/bit-vector.cc' object='bit-vector.lo' libtool=yes @AMDEPBACKSLASH@
429
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
430
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o bit-vector.lo `test -f 'marisa/grimoire/vector/bit-vector.cc' || echo '$(srcdir)/'`marisa/grimoire/vector/bit-vector.cc
431
+
432
+ tail.lo: marisa/grimoire/trie/tail.cc
433
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tail.lo -MD -MP -MF $(DEPDIR)/tail.Tpo -c -o tail.lo `test -f 'marisa/grimoire/trie/tail.cc' || echo '$(srcdir)/'`marisa/grimoire/trie/tail.cc
434
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/tail.Tpo $(DEPDIR)/tail.Plo
435
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/trie/tail.cc' object='tail.lo' libtool=yes @AMDEPBACKSLASH@
436
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
437
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tail.lo `test -f 'marisa/grimoire/trie/tail.cc' || echo '$(srcdir)/'`marisa/grimoire/trie/tail.cc
438
+
439
+ louds-trie.lo: marisa/grimoire/trie/louds-trie.cc
440
+ @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT louds-trie.lo -MD -MP -MF $(DEPDIR)/louds-trie.Tpo -c -o louds-trie.lo `test -f 'marisa/grimoire/trie/louds-trie.cc' || echo '$(srcdir)/'`marisa/grimoire/trie/louds-trie.cc
441
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/louds-trie.Tpo $(DEPDIR)/louds-trie.Plo
442
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='marisa/grimoire/trie/louds-trie.cc' object='louds-trie.lo' libtool=yes @AMDEPBACKSLASH@
443
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
444
+ @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o louds-trie.lo `test -f 'marisa/grimoire/trie/louds-trie.cc' || echo '$(srcdir)/'`marisa/grimoire/trie/louds-trie.cc
445
+
446
+ mostlyclean-libtool:
447
+ -rm -f *.lo
448
+
449
+ clean-libtool:
450
+ -rm -rf .libs _libs
451
+ install-includeHEADERS: $(include_HEADERS)
452
+ @$(NORMAL_INSTALL)
453
+ test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
454
+ @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
455
+ for p in $$list; do \
456
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
457
+ echo "$$d$$p"; \
458
+ done | $(am__base_list) | \
459
+ while read files; do \
460
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
461
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
462
+ done
463
+
464
+ uninstall-includeHEADERS:
465
+ @$(NORMAL_UNINSTALL)
466
+ @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
467
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
468
+ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
469
+ install-libmarisa_includeHEADERS: $(libmarisa_include_HEADERS)
470
+ @$(NORMAL_INSTALL)
471
+ test -z "$(libmarisa_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libmarisa_includedir)"
472
+ @list='$(libmarisa_include_HEADERS)'; test -n "$(libmarisa_includedir)" || list=; \
473
+ for p in $$list; do \
474
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
475
+ echo "$$d$$p"; \
476
+ done | $(am__base_list) | \
477
+ while read files; do \
478
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libmarisa_includedir)'"; \
479
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libmarisa_includedir)" || exit $$?; \
480
+ done
481
+
482
+ uninstall-libmarisa_includeHEADERS:
483
+ @$(NORMAL_UNINSTALL)
484
+ @list='$(libmarisa_include_HEADERS)'; test -n "$(libmarisa_includedir)" || list=; \
485
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
486
+ dir='$(DESTDIR)$(libmarisa_includedir)'; $(am__uninstall_files_from_dir)
487
+
488
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
489
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
490
+ unique=`for i in $$list; do \
491
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
492
+ done | \
493
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
494
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
495
+ mkid -fID $$unique
496
+ tags: TAGS
497
+
498
+ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
499
+ $(TAGS_FILES) $(LISP)
500
+ set x; \
501
+ here=`pwd`; \
502
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
503
+ unique=`for i in $$list; do \
504
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
505
+ done | \
506
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
507
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
508
+ shift; \
509
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
510
+ test -n "$$unique" || unique=$$empty_fix; \
511
+ if test $$# -gt 0; then \
512
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
513
+ "$$@" $$unique; \
514
+ else \
515
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
516
+ $$unique; \
517
+ fi; \
518
+ fi
519
+ ctags: CTAGS
520
+ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
521
+ $(TAGS_FILES) $(LISP)
522
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
523
+ unique=`for i in $$list; do \
524
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
525
+ done | \
526
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
527
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
528
+ test -z "$(CTAGS_ARGS)$$unique" \
529
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
530
+ $$unique
531
+
532
+ GTAGS:
533
+ here=`$(am__cd) $(top_builddir) && pwd` \
534
+ && $(am__cd) $(top_srcdir) \
535
+ && gtags -i $(GTAGS_ARGS) "$$here"
536
+
537
+ distclean-tags:
538
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
539
+
540
+ distdir: $(DISTFILES)
541
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
542
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
543
+ list='$(DISTFILES)'; \
544
+ dist_files=`for file in $$list; do echo $$file; done | \
545
+ sed -e "s|^$$srcdirstrip/||;t" \
546
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
547
+ case $$dist_files in \
548
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
549
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
550
+ sort -u` ;; \
551
+ esac; \
552
+ for file in $$dist_files; do \
553
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
554
+ if test -d $$d/$$file; then \
555
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
556
+ if test -d "$(distdir)/$$file"; then \
557
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
558
+ fi; \
559
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
560
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
561
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
562
+ fi; \
563
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
564
+ else \
565
+ test -f "$(distdir)/$$file" \
566
+ || cp -p $$d/$$file "$(distdir)/$$file" \
567
+ || exit 1; \
568
+ fi; \
569
+ done
570
+ check-am: all-am
571
+ check: check-am
572
+ all-am: Makefile $(LTLIBRARIES) $(HEADERS)
573
+ installdirs:
574
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(libmarisa_includedir)"; do \
575
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
576
+ done
577
+ install: install-am
578
+ install-exec: install-exec-am
579
+ install-data: install-data-am
580
+ uninstall: uninstall-am
581
+
582
+ install-am: all-am
583
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
584
+
585
+ installcheck: installcheck-am
586
+ install-strip:
587
+ if test -z '$(STRIP)'; then \
588
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
589
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
590
+ install; \
591
+ else \
592
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
593
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
594
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
595
+ fi
596
+ mostlyclean-generic:
597
+
598
+ clean-generic:
599
+
600
+ distclean-generic:
601
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
602
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
603
+
604
+ maintainer-clean-generic:
605
+ @echo "This command is intended for maintainers to use"
606
+ @echo "it deletes files that may require special tools to rebuild."
607
+ clean: clean-am
608
+
609
+ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
610
+ mostlyclean-am
611
+
612
+ distclean: distclean-am
613
+ -rm -rf ./$(DEPDIR)
614
+ -rm -f Makefile
615
+ distclean-am: clean-am distclean-compile distclean-generic \
616
+ distclean-tags
617
+
618
+ dvi: dvi-am
619
+
620
+ dvi-am:
621
+
622
+ html: html-am
623
+
624
+ html-am:
625
+
626
+ info: info-am
627
+
628
+ info-am:
629
+
630
+ install-data-am: install-includeHEADERS \
631
+ install-libmarisa_includeHEADERS
632
+
633
+ install-dvi: install-dvi-am
634
+
635
+ install-dvi-am:
636
+
637
+ install-exec-am: install-libLTLIBRARIES
638
+
639
+ install-html: install-html-am
640
+
641
+ install-html-am:
642
+
643
+ install-info: install-info-am
644
+
645
+ install-info-am:
646
+
647
+ install-man:
648
+
649
+ install-pdf: install-pdf-am
650
+
651
+ install-pdf-am:
652
+
653
+ install-ps: install-ps-am
654
+
655
+ install-ps-am:
656
+
657
+ installcheck-am:
658
+
659
+ maintainer-clean: maintainer-clean-am
660
+ -rm -rf ./$(DEPDIR)
661
+ -rm -f Makefile
662
+ maintainer-clean-am: distclean-am maintainer-clean-generic
663
+
664
+ mostlyclean: mostlyclean-am
665
+
666
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
667
+ mostlyclean-libtool
668
+
669
+ pdf: pdf-am
670
+
671
+ pdf-am:
672
+
673
+ ps: ps-am
674
+
675
+ ps-am:
676
+
677
+ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
678
+ uninstall-libmarisa_includeHEADERS
679
+
680
+ .MAKE: install-am install-strip
681
+
682
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
683
+ clean-libLTLIBRARIES clean-libtool ctags distclean \
684
+ distclean-compile distclean-generic distclean-libtool \
685
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
686
+ install install-am install-data install-data-am install-dvi \
687
+ install-dvi-am install-exec install-exec-am install-html \
688
+ install-html-am install-includeHEADERS install-info \
689
+ install-info-am install-libLTLIBRARIES \
690
+ install-libmarisa_includeHEADERS install-man install-pdf \
691
+ install-pdf-am install-ps install-ps-am install-strip \
692
+ installcheck installcheck-am installdirs maintainer-clean \
693
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
694
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
695
+ tags uninstall uninstall-am uninstall-includeHEADERS \
696
+ uninstall-libLTLIBRARIES uninstall-libmarisa_includeHEADERS
697
+
698
+
699
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
700
+ # Otherwise a system limit (for SysV at least) may be exceeded.
701
+ .NOEXPORT: