tyler-trie 0.1.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 (53) hide show
  1. data/VERSION.yml +4 -0
  2. data/ext/libdatrie/AUTHORS +1 -0
  3. data/ext/libdatrie/COPYING +510 -0
  4. data/ext/libdatrie/ChangeLog +410 -0
  5. data/ext/libdatrie/INSTALL +236 -0
  6. data/ext/libdatrie/Makefile.am +5 -0
  7. data/ext/libdatrie/Makefile.in +661 -0
  8. data/ext/libdatrie/NEWS +27 -0
  9. data/ext/libdatrie/README +32 -0
  10. data/ext/libdatrie/aclocal.m4 +7431 -0
  11. data/ext/libdatrie/config.guess +1516 -0
  12. data/ext/libdatrie/config.h.in +74 -0
  13. data/ext/libdatrie/config.sub +1626 -0
  14. data/ext/libdatrie/configure +22008 -0
  15. data/ext/libdatrie/configure.ac +71 -0
  16. data/ext/libdatrie/datrie.pc.in +11 -0
  17. data/ext/libdatrie/datrie/Makefile.am +35 -0
  18. data/ext/libdatrie/datrie/Makefile.in +522 -0
  19. data/ext/libdatrie/datrie/alpha-map.c +170 -0
  20. data/ext/libdatrie/datrie/alpha-map.h +36 -0
  21. data/ext/libdatrie/datrie/darray.c +674 -0
  22. data/ext/libdatrie/datrie/darray.h +229 -0
  23. data/ext/libdatrie/datrie/fileutils.c +151 -0
  24. data/ext/libdatrie/datrie/fileutils.h +36 -0
  25. data/ext/libdatrie/datrie/libdatrie.def +31 -0
  26. data/ext/libdatrie/datrie/sb-trie.c +331 -0
  27. data/ext/libdatrie/datrie/sb-trie.h +279 -0
  28. data/ext/libdatrie/datrie/tail.c +344 -0
  29. data/ext/libdatrie/datrie/tail.h +200 -0
  30. data/ext/libdatrie/datrie/trie-private.h +31 -0
  31. data/ext/libdatrie/datrie/trie.c +413 -0
  32. data/ext/libdatrie/datrie/trie.h +270 -0
  33. data/ext/libdatrie/datrie/triedefs.h +63 -0
  34. data/ext/libdatrie/datrie/typedefs.h +113 -0
  35. data/ext/libdatrie/depcomp +530 -0
  36. data/ext/libdatrie/doc/Doxyfile.in +244 -0
  37. data/ext/libdatrie/doc/Makefile.am +29 -0
  38. data/ext/libdatrie/doc/Makefile.in +352 -0
  39. data/ext/libdatrie/install-sh +323 -0
  40. data/ext/libdatrie/ltmain.sh +6938 -0
  41. data/ext/libdatrie/man/Makefile.am +4 -0
  42. data/ext/libdatrie/man/Makefile.in +381 -0
  43. data/ext/libdatrie/man/trietool.1 +107 -0
  44. data/ext/libdatrie/missing +360 -0
  45. data/ext/libdatrie/tools/Makefile.am +7 -0
  46. data/ext/libdatrie/tools/Makefile.in +460 -0
  47. data/ext/libdatrie/tools/trietool.c +308 -0
  48. data/ext/trie/extconf.rb +12 -0
  49. data/ext/trie/trie.c +174 -0
  50. data/lib/trie.rb +1 -0
  51. data/spec/test-trie/README +1 -0
  52. data/spec/trie_spec.rb +79 -0
  53. metadata +139 -0
@@ -0,0 +1,71 @@
1
+ # -*- Autoconf -*-
2
+ # Process this file with autoconf to produce a configure script.
3
+
4
+ AC_PREREQ(2.59)
5
+ AC_INIT(libdatrie, 0.1.3, thep@linux.thai.net)
6
+ AC_CONFIG_SRCDIR([datrie/trie.h])
7
+ AC_CONFIG_HEADER([config.h])
8
+
9
+ AM_INIT_AUTOMAKE
10
+
11
+ # Library versioning
12
+ # Library code modified: REVISION++
13
+ # Interfaces added: CURRENT++ REVISION=0 AGE++
14
+ # Interfaces changed/removed: CURRENT++ REVISION=0 AGE=0
15
+ LT_CURRENT=0
16
+ LT_REVISION=3
17
+ LT_AGE=0
18
+ AC_SUBST(LT_CURRENT)
19
+ AC_SUBST(LT_REVISION)
20
+ AC_SUBST(LT_AGE)
21
+
22
+ # Checks for programs.
23
+ AC_PROG_CC
24
+ AC_PROG_INSTALL
25
+ AC_PROG_MAKE_SET
26
+ AC_LIBTOOL_WIN32_DLL
27
+ AC_PROG_LIBTOOL
28
+
29
+ # Checks for libraries.
30
+
31
+ # Checks for header files.
32
+ AC_HEADER_STDC
33
+ AC_CHECK_HEADERS([limits.h stdlib.h stdio.h string.h])
34
+
35
+ # Checks for typedefs, structures, and compiler characteristics.
36
+ AC_C_CONST
37
+ AC_TYPE_SIZE_T
38
+
39
+ dnl Disable doc generation with doxygen option
40
+ AC_ARG_ENABLE(doxygen-doc,
41
+ [AC_HELP_STRING([--disable-doxygen-doc],
42
+ [disable document generation with doxygen])],
43
+ , enable_doxygen_doc="yes")
44
+
45
+ if test "x$enable_doxygen_doc" = "xyes"; then
46
+ AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
47
+ if test "x$DOXYGEN" = "xno"; then
48
+ enable_doxygen_doc="no"
49
+ fi
50
+ fi
51
+
52
+ dnl where to install the doxygen-generated HTML doc
53
+ AC_ARG_WITH(html-docdir,
54
+ [AC_HELP_STRING([--with-html-docdir=DIR],
55
+ [where to install the doxyten-generated HTML doc [PREFIX/share/doc/datrie/html]])],
56
+ [htmldocdir="$withval"], [htmldocdir=\$\{prefix\}/share/doc/datrie/html])
57
+ AC_SUBST(htmldocdir)
58
+
59
+ AM_CONDITIONAL(ENABLE_DOXYGEN_DOC,test "x$enable_doxygen_doc" = "xyes")
60
+
61
+ # Checks for library functions.
62
+ AC_FUNC_MALLOC
63
+
64
+ AC_CONFIG_FILES([Makefile
65
+ datrie.pc
66
+ datrie/Makefile
67
+ tools/Makefile
68
+ man/Makefile
69
+ doc/Makefile
70
+ doc/Doxyfile])
71
+ AC_OUTPUT
@@ -0,0 +1,11 @@
1
+ prefix=@prefix@
2
+ exec_prefix=@exec_prefix@
3
+ libdir=@libdir@
4
+ includedir=@includedir@
5
+
6
+ Name: datrie
7
+ Description: Double-array trie library
8
+ Version: @VERSION@
9
+ Requires:
10
+ Libs: -L${libdir} -ldatrie
11
+ Cflags: -I${includedir}
@@ -0,0 +1,35 @@
1
+ pkgincludedir = $(includedir)/datrie
2
+
3
+ pkginclude_HEADERS = \
4
+ typedefs.h \
5
+ triedefs.h \
6
+ trie.h \
7
+ sb-trie.h
8
+
9
+ EXTRA_DIST = libdatrie.def
10
+
11
+ INCLUDES = -I$(top_srcdir)
12
+
13
+ lib_LTLIBRARIES = libdatrie.la
14
+
15
+ libdatrie_la_SOURCES = \
16
+ typedefs.h \
17
+ triedefs.h \
18
+ trie-private.h \
19
+ fileutils.h \
20
+ fileutils.c \
21
+ darray.h \
22
+ darray.c \
23
+ tail.h \
24
+ tail.c \
25
+ trie.h \
26
+ trie.c \
27
+ alpha-map.h \
28
+ alpha-map.c \
29
+ sb-trie.h \
30
+ sb-trie.c
31
+ libdatrie_la_LDFLAGS = -no-undefined \
32
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
33
+ -export-symbols $(srcdir)/libdatrie.def
34
+ libdatrie_la_DEPENDENCIES = libdatrie.def
35
+
@@ -0,0 +1,522 @@
1
+ # Makefile.in generated by automake 1.9.6 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005 Free Software Foundation, Inc.
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
+ @SET_MAKE@
16
+
17
+
18
+ srcdir = @srcdir@
19
+ top_srcdir = @top_srcdir@
20
+ VPATH = @srcdir@
21
+ pkgdatadir = $(datadir)/@PACKAGE@
22
+ pkglibdir = $(libdir)/@PACKAGE@
23
+ top_builddir = ..
24
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
25
+ INSTALL = @INSTALL@
26
+ install_sh_DATA = $(install_sh) -c -m 644
27
+ install_sh_PROGRAM = $(install_sh) -c
28
+ install_sh_SCRIPT = $(install_sh) -c
29
+ INSTALL_HEADER = $(INSTALL_DATA)
30
+ transform = $(program_transform_name)
31
+ NORMAL_INSTALL = :
32
+ PRE_INSTALL = :
33
+ POST_INSTALL = :
34
+ NORMAL_UNINSTALL = :
35
+ PRE_UNINSTALL = :
36
+ POST_UNINSTALL = :
37
+ build_triplet = @build@
38
+ host_triplet = @host@
39
+ subdir = datrie
40
+ DIST_COMMON = $(pkginclude_HEADERS) $(srcdir)/Makefile.am \
41
+ $(srcdir)/Makefile.in
42
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
43
+ am__aclocal_m4_deps = $(top_srcdir)/configure.ac
44
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45
+ $(ACLOCAL_M4)
46
+ mkinstalldirs = $(install_sh) -d
47
+ CONFIG_HEADER = $(top_builddir)/config.h
48
+ CONFIG_CLEAN_FILES =
49
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
50
+ am__vpath_adj = case $$p in \
51
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
52
+ *) f=$$p;; \
53
+ esac;
54
+ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
55
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"
56
+ libLTLIBRARIES_INSTALL = $(INSTALL)
57
+ LTLIBRARIES = $(lib_LTLIBRARIES)
58
+ libdatrie_la_LIBADD =
59
+ am_libdatrie_la_OBJECTS = fileutils.lo darray.lo tail.lo trie.lo \
60
+ alpha-map.lo sb-trie.lo
61
+ libdatrie_la_OBJECTS = $(am_libdatrie_la_OBJECTS)
62
+ DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
63
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
64
+ am__depfiles_maybe = depfiles
65
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
66
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
67
+ LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
68
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
69
+ $(AM_CFLAGS) $(CFLAGS)
70
+ CCLD = $(CC)
71
+ LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
72
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
73
+ SOURCES = $(libdatrie_la_SOURCES)
74
+ DIST_SOURCES = $(libdatrie_la_SOURCES)
75
+ pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
76
+ HEADERS = $(pkginclude_HEADERS)
77
+ ETAGS = etags
78
+ CTAGS = ctags
79
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
80
+ pkgincludedir = $(includedir)/datrie
81
+ ACLOCAL = @ACLOCAL@
82
+ AMDEP_FALSE = @AMDEP_FALSE@
83
+ AMDEP_TRUE = @AMDEP_TRUE@
84
+ AMTAR = @AMTAR@
85
+ AR = @AR@
86
+ AS = @AS@
87
+ AUTOCONF = @AUTOCONF@
88
+ AUTOHEADER = @AUTOHEADER@
89
+ AUTOMAKE = @AUTOMAKE@
90
+ AWK = @AWK@
91
+ CC = @CC@
92
+ CCDEPMODE = @CCDEPMODE@
93
+ CFLAGS = @CFLAGS@
94
+ CPP = @CPP@
95
+ CPPFLAGS = @CPPFLAGS@
96
+ CXX = @CXX@
97
+ CXXCPP = @CXXCPP@
98
+ CXXDEPMODE = @CXXDEPMODE@
99
+ CXXFLAGS = @CXXFLAGS@
100
+ CYGPATH_W = @CYGPATH_W@
101
+ DEFS = @DEFS@
102
+ DEPDIR = @DEPDIR@
103
+ DLLTOOL = @DLLTOOL@
104
+ DOXYGEN = @DOXYGEN@
105
+ ECHO = @ECHO@
106
+ ECHO_C = @ECHO_C@
107
+ ECHO_N = @ECHO_N@
108
+ ECHO_T = @ECHO_T@
109
+ EGREP = @EGREP@
110
+ ENABLE_DOXYGEN_DOC_FALSE = @ENABLE_DOXYGEN_DOC_FALSE@
111
+ ENABLE_DOXYGEN_DOC_TRUE = @ENABLE_DOXYGEN_DOC_TRUE@
112
+ EXEEXT = @EXEEXT@
113
+ F77 = @F77@
114
+ FFLAGS = @FFLAGS@
115
+ GREP = @GREP@
116
+ INSTALL_DATA = @INSTALL_DATA@
117
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
118
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
119
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
120
+ LDFLAGS = @LDFLAGS@
121
+ LIBOBJS = @LIBOBJS@
122
+ LIBS = @LIBS@
123
+ LIBTOOL = @LIBTOOL@
124
+ LN_S = @LN_S@
125
+ LTLIBOBJS = @LTLIBOBJS@
126
+ LT_AGE = @LT_AGE@
127
+ LT_CURRENT = @LT_CURRENT@
128
+ LT_REVISION = @LT_REVISION@
129
+ MAKEINFO = @MAKEINFO@
130
+ OBJDUMP = @OBJDUMP@
131
+ OBJEXT = @OBJEXT@
132
+ PACKAGE = @PACKAGE@
133
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
134
+ PACKAGE_NAME = @PACKAGE_NAME@
135
+ PACKAGE_STRING = @PACKAGE_STRING@
136
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
137
+ PACKAGE_VERSION = @PACKAGE_VERSION@
138
+ PATH_SEPARATOR = @PATH_SEPARATOR@
139
+ RANLIB = @RANLIB@
140
+ SED = @SED@
141
+ SET_MAKE = @SET_MAKE@
142
+ SHELL = @SHELL@
143
+ STRIP = @STRIP@
144
+ VERSION = @VERSION@
145
+ ac_ct_CC = @ac_ct_CC@
146
+ ac_ct_CXX = @ac_ct_CXX@
147
+ ac_ct_F77 = @ac_ct_F77@
148
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
149
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
150
+ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
151
+ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
152
+ am__include = @am__include@
153
+ am__leading_dot = @am__leading_dot@
154
+ am__quote = @am__quote@
155
+ am__tar = @am__tar@
156
+ am__untar = @am__untar@
157
+ bindir = @bindir@
158
+ build = @build@
159
+ build_alias = @build_alias@
160
+ build_cpu = @build_cpu@
161
+ build_os = @build_os@
162
+ build_vendor = @build_vendor@
163
+ datadir = @datadir@
164
+ datarootdir = @datarootdir@
165
+ docdir = @docdir@
166
+ dvidir = @dvidir@
167
+ exec_prefix = @exec_prefix@
168
+ host = @host@
169
+ host_alias = @host_alias@
170
+ host_cpu = @host_cpu@
171
+ host_os = @host_os@
172
+ host_vendor = @host_vendor@
173
+ htmldir = @htmldir@
174
+ htmldocdir = @htmldocdir@
175
+ includedir = @includedir@
176
+ infodir = @infodir@
177
+ install_sh = @install_sh@
178
+ libdir = @libdir@
179
+ libexecdir = @libexecdir@
180
+ localedir = @localedir@
181
+ localstatedir = @localstatedir@
182
+ mandir = @mandir@
183
+ mkdir_p = @mkdir_p@
184
+ oldincludedir = @oldincludedir@
185
+ pdfdir = @pdfdir@
186
+ prefix = @prefix@
187
+ program_transform_name = @program_transform_name@
188
+ psdir = @psdir@
189
+ sbindir = @sbindir@
190
+ sharedstatedir = @sharedstatedir@
191
+ sysconfdir = @sysconfdir@
192
+ target_alias = @target_alias@
193
+ pkginclude_HEADERS = \
194
+ typedefs.h \
195
+ triedefs.h \
196
+ trie.h \
197
+ sb-trie.h
198
+
199
+ EXTRA_DIST = libdatrie.def
200
+ INCLUDES = -I$(top_srcdir)
201
+ lib_LTLIBRARIES = libdatrie.la
202
+ libdatrie_la_SOURCES = \
203
+ typedefs.h \
204
+ triedefs.h \
205
+ trie-private.h \
206
+ fileutils.h \
207
+ fileutils.c \
208
+ darray.h \
209
+ darray.c \
210
+ tail.h \
211
+ tail.c \
212
+ trie.h \
213
+ trie.c \
214
+ alpha-map.h \
215
+ alpha-map.c \
216
+ sb-trie.h \
217
+ sb-trie.c
218
+
219
+ libdatrie_la_LDFLAGS = -no-undefined \
220
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
221
+ -export-symbols $(srcdir)/libdatrie.def
222
+
223
+ libdatrie_la_DEPENDENCIES = libdatrie.def
224
+ all: all-am
225
+
226
+ .SUFFIXES:
227
+ .SUFFIXES: .c .lo .o .obj
228
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
229
+ @for dep in $?; do \
230
+ case '$(am__configure_deps)' in \
231
+ *$$dep*) \
232
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
233
+ && exit 0; \
234
+ exit 1;; \
235
+ esac; \
236
+ done; \
237
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu datrie/Makefile'; \
238
+ cd $(top_srcdir) && \
239
+ $(AUTOMAKE) --gnu datrie/Makefile
240
+ .PRECIOUS: Makefile
241
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
242
+ @case '$?' in \
243
+ *config.status*) \
244
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
245
+ *) \
246
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
247
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
248
+ esac;
249
+
250
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
251
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
252
+
253
+ $(top_srcdir)/configure: $(am__configure_deps)
254
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
255
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
256
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
257
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
258
+ @$(NORMAL_INSTALL)
259
+ test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
260
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
261
+ if test -f $$p; then \
262
+ f=$(am__strip_dir) \
263
+ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
264
+ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
265
+ else :; fi; \
266
+ done
267
+
268
+ uninstall-libLTLIBRARIES:
269
+ @$(NORMAL_UNINSTALL)
270
+ @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
271
+ p=$(am__strip_dir) \
272
+ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
273
+ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
274
+ done
275
+
276
+ clean-libLTLIBRARIES:
277
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
278
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
279
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
280
+ test "$$dir" != "$$p" || dir=.; \
281
+ echo "rm -f \"$${dir}/so_locations\""; \
282
+ rm -f "$${dir}/so_locations"; \
283
+ done
284
+ libdatrie.la: $(libdatrie_la_OBJECTS) $(libdatrie_la_DEPENDENCIES)
285
+ $(LINK) -rpath $(libdir) $(libdatrie_la_LDFLAGS) $(libdatrie_la_OBJECTS) $(libdatrie_la_LIBADD) $(LIBS)
286
+
287
+ mostlyclean-compile:
288
+ -rm -f *.$(OBJEXT)
289
+
290
+ distclean-compile:
291
+ -rm -f *.tab.c
292
+
293
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alpha-map.Plo@am__quote@
294
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/darray.Plo@am__quote@
295
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileutils.Plo@am__quote@
296
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sb-trie.Plo@am__quote@
297
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tail.Plo@am__quote@
298
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trie.Plo@am__quote@
299
+
300
+ .c.o:
301
+ @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
302
+ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
303
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
304
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
305
+ @am__fastdepCC_FALSE@ $(COMPILE) -c $<
306
+
307
+ .c.obj:
308
+ @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
309
+ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
310
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
311
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
312
+ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
313
+
314
+ .c.lo:
315
+ @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
316
+ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
317
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
318
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
319
+ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
320
+
321
+ mostlyclean-libtool:
322
+ -rm -f *.lo
323
+
324
+ clean-libtool:
325
+ -rm -rf .libs _libs
326
+
327
+ distclean-libtool:
328
+ -rm -f libtool
329
+ uninstall-info-am:
330
+ install-pkgincludeHEADERS: $(pkginclude_HEADERS)
331
+ @$(NORMAL_INSTALL)
332
+ test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
333
+ @list='$(pkginclude_HEADERS)'; for p in $$list; do \
334
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
335
+ f=$(am__strip_dir) \
336
+ echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \
337
+ $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \
338
+ done
339
+
340
+ uninstall-pkgincludeHEADERS:
341
+ @$(NORMAL_UNINSTALL)
342
+ @list='$(pkginclude_HEADERS)'; for p in $$list; do \
343
+ f=$(am__strip_dir) \
344
+ echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \
345
+ rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \
346
+ done
347
+
348
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
349
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
350
+ unique=`for i in $$list; do \
351
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
352
+ done | \
353
+ $(AWK) ' { files[$$0] = 1; } \
354
+ END { for (i in files) print i; }'`; \
355
+ mkid -fID $$unique
356
+ tags: TAGS
357
+
358
+ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
359
+ $(TAGS_FILES) $(LISP)
360
+ tags=; \
361
+ here=`pwd`; \
362
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
363
+ unique=`for i in $$list; do \
364
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
365
+ done | \
366
+ $(AWK) ' { files[$$0] = 1; } \
367
+ END { for (i in files) print i; }'`; \
368
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
369
+ test -n "$$unique" || unique=$$empty_fix; \
370
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
371
+ $$tags $$unique; \
372
+ fi
373
+ ctags: CTAGS
374
+ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
375
+ $(TAGS_FILES) $(LISP)
376
+ tags=; \
377
+ here=`pwd`; \
378
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
379
+ unique=`for i in $$list; do \
380
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
381
+ done | \
382
+ $(AWK) ' { files[$$0] = 1; } \
383
+ END { for (i in files) print i; }'`; \
384
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
385
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
386
+ $$tags $$unique
387
+
388
+ GTAGS:
389
+ here=`$(am__cd) $(top_builddir) && pwd` \
390
+ && cd $(top_srcdir) \
391
+ && gtags -i $(GTAGS_ARGS) $$here
392
+
393
+ distclean-tags:
394
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
395
+
396
+ distdir: $(DISTFILES)
397
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
398
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
399
+ list='$(DISTFILES)'; for file in $$list; do \
400
+ case $$file in \
401
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
402
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
403
+ esac; \
404
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
405
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
406
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
407
+ dir="/$$dir"; \
408
+ $(mkdir_p) "$(distdir)$$dir"; \
409
+ else \
410
+ dir=''; \
411
+ fi; \
412
+ if test -d $$d/$$file; then \
413
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
414
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
415
+ fi; \
416
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
417
+ else \
418
+ test -f $(distdir)/$$file \
419
+ || cp -p $$d/$$file $(distdir)/$$file \
420
+ || exit 1; \
421
+ fi; \
422
+ done
423
+ check-am: all-am
424
+ check: check-am
425
+ all-am: Makefile $(LTLIBRARIES) $(HEADERS)
426
+ installdirs:
427
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"; do \
428
+ test -z "$$dir" || $(mkdir_p) "$$dir"; \
429
+ done
430
+ install: install-am
431
+ install-exec: install-exec-am
432
+ install-data: install-data-am
433
+ uninstall: uninstall-am
434
+
435
+ install-am: all-am
436
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
437
+
438
+ installcheck: installcheck-am
439
+ install-strip:
440
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
441
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
442
+ `test -z '$(STRIP)' || \
443
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
444
+ mostlyclean-generic:
445
+
446
+ clean-generic:
447
+
448
+ distclean-generic:
449
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
450
+
451
+ maintainer-clean-generic:
452
+ @echo "This command is intended for maintainers to use"
453
+ @echo "it deletes files that may require special tools to rebuild."
454
+ clean: clean-am
455
+
456
+ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
457
+ mostlyclean-am
458
+
459
+ distclean: distclean-am
460
+ -rm -rf ./$(DEPDIR)
461
+ -rm -f Makefile
462
+ distclean-am: clean-am distclean-compile distclean-generic \
463
+ distclean-libtool distclean-tags
464
+
465
+ dvi: dvi-am
466
+
467
+ dvi-am:
468
+
469
+ html: html-am
470
+
471
+ info: info-am
472
+
473
+ info-am:
474
+
475
+ install-data-am: install-pkgincludeHEADERS
476
+
477
+ install-exec-am: install-libLTLIBRARIES
478
+
479
+ install-info: install-info-am
480
+
481
+ install-man:
482
+
483
+ installcheck-am:
484
+
485
+ maintainer-clean: maintainer-clean-am
486
+ -rm -rf ./$(DEPDIR)
487
+ -rm -f Makefile
488
+ maintainer-clean-am: distclean-am maintainer-clean-generic
489
+
490
+ mostlyclean: mostlyclean-am
491
+
492
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
493
+ mostlyclean-libtool
494
+
495
+ pdf: pdf-am
496
+
497
+ pdf-am:
498
+
499
+ ps: ps-am
500
+
501
+ ps-am:
502
+
503
+ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
504
+ uninstall-pkgincludeHEADERS
505
+
506
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
507
+ clean-libLTLIBRARIES clean-libtool ctags distclean \
508
+ distclean-compile distclean-generic distclean-libtool \
509
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
510
+ install install-am install-data install-data-am install-exec \
511
+ install-exec-am install-info install-info-am \
512
+ install-libLTLIBRARIES install-man install-pkgincludeHEADERS \
513
+ install-strip installcheck installcheck-am installdirs \
514
+ maintainer-clean maintainer-clean-generic mostlyclean \
515
+ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
516
+ pdf pdf-am ps ps-am tags uninstall uninstall-am \
517
+ uninstall-info-am uninstall-libLTLIBRARIES \
518
+ uninstall-pkgincludeHEADERS
519
+
520
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
521
+ # Otherwise a system limit (for SysV at least) may be exceeded.
522
+ .NOEXPORT: