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,244 @@
1
+ # Doxyfile 1.5.3
2
+
3
+ #---------------------------------------------------------------------------
4
+ # Project related configuration options
5
+ #---------------------------------------------------------------------------
6
+ DOXYFILE_ENCODING = UTF-8
7
+ PROJECT_NAME = @PACKAGE@
8
+ PROJECT_NUMBER = @VERSION@
9
+ OUTPUT_DIRECTORY = @top_builddir@/doc
10
+ CREATE_SUBDIRS = NO
11
+ OUTPUT_LANGUAGE = English
12
+ BRIEF_MEMBER_DESC = YES
13
+ REPEAT_BRIEF = YES
14
+ ABBREVIATE_BRIEF = "The $name class " \
15
+ "The $name widget " \
16
+ "The $name file " \
17
+ is \
18
+ provides \
19
+ specifies \
20
+ contains \
21
+ represents \
22
+ a \
23
+ an \
24
+ the
25
+ ALWAYS_DETAILED_SEC = NO
26
+ INLINE_INHERITED_MEMB = NO
27
+ FULL_PATH_NAMES = YES
28
+ STRIP_FROM_PATH = @top_srcdir@
29
+ STRIP_FROM_INC_PATH = @top_srcdir@
30
+ SHORT_NAMES = NO
31
+ JAVADOC_AUTOBRIEF = NO
32
+ QT_AUTOBRIEF = NO
33
+ MULTILINE_CPP_IS_BRIEF = NO
34
+ DETAILS_AT_TOP = YES
35
+ INHERIT_DOCS = YES
36
+ SEPARATE_MEMBER_PAGES = NO
37
+ TAB_SIZE = 8
38
+ ALIASES =
39
+ OPTIMIZE_OUTPUT_FOR_C = YES
40
+ OPTIMIZE_OUTPUT_JAVA = NO
41
+ BUILTIN_STL_SUPPORT = NO
42
+ CPP_CLI_SUPPORT = NO
43
+ DISTRIBUTE_GROUP_DOC = NO
44
+ SUBGROUPING = YES
45
+ #---------------------------------------------------------------------------
46
+ # Build related configuration options
47
+ #---------------------------------------------------------------------------
48
+ EXTRACT_ALL = NO
49
+ EXTRACT_PRIVATE = NO
50
+ EXTRACT_STATIC = NO
51
+ EXTRACT_LOCAL_CLASSES = YES
52
+ EXTRACT_LOCAL_METHODS = NO
53
+ EXTRACT_ANON_NSPACES = NO
54
+ HIDE_UNDOC_MEMBERS = YES
55
+ HIDE_UNDOC_CLASSES = YES
56
+ HIDE_FRIEND_COMPOUNDS = NO
57
+ HIDE_IN_BODY_DOCS = NO
58
+ INTERNAL_DOCS = NO
59
+ CASE_SENSE_NAMES = YES
60
+ HIDE_SCOPE_NAMES = NO
61
+ SHOW_INCLUDE_FILES = NO
62
+ INLINE_INFO = YES
63
+ SORT_MEMBER_DOCS = YES
64
+ SORT_BRIEF_DOCS = NO
65
+ SORT_BY_SCOPE_NAME = NO
66
+ GENERATE_TODOLIST = YES
67
+ GENERATE_TESTLIST = YES
68
+ GENERATE_BUGLIST = YES
69
+ GENERATE_DEPRECATEDLIST= YES
70
+ ENABLED_SECTIONS =
71
+ MAX_INITIALIZER_LINES = 30
72
+ SHOW_USED_FILES = YES
73
+ SHOW_DIRECTORIES = NO
74
+ FILE_VERSION_FILTER =
75
+ #---------------------------------------------------------------------------
76
+ # configuration options related to warning and progress messages
77
+ #---------------------------------------------------------------------------
78
+ QUIET = NO
79
+ WARNINGS = YES
80
+ WARN_IF_UNDOCUMENTED = YES
81
+ WARN_IF_DOC_ERROR = YES
82
+ WARN_NO_PARAMDOC = NO
83
+ WARN_FORMAT = "$file:$line: $text "
84
+ WARN_LOGFILE =
85
+ #---------------------------------------------------------------------------
86
+ # configuration options related to the input files
87
+ #---------------------------------------------------------------------------
88
+ INPUT = @top_srcdir@/datrie/sb-trie.h \
89
+ @top_srcdir@/datrie/trie.h \
90
+ @top_srcdir@/datrie/triedefs.h \
91
+ @top_srcdir@/datrie/typedefs.h
92
+ INPUT_ENCODING = UTF-8
93
+ FILE_PATTERNS =
94
+ RECURSIVE = YES
95
+ EXCLUDE =
96
+ EXCLUDE_SYMLINKS = NO
97
+ EXCLUDE_PATTERNS =
98
+ EXCLUDE_SYMBOLS =
99
+ EXAMPLE_PATH =
100
+ EXAMPLE_PATTERNS = *
101
+ EXAMPLE_RECURSIVE = NO
102
+ IMAGE_PATH =
103
+ INPUT_FILTER =
104
+ FILTER_PATTERNS =
105
+ FILTER_SOURCE_FILES = NO
106
+ #---------------------------------------------------------------------------
107
+ # configuration options related to source browsing
108
+ #---------------------------------------------------------------------------
109
+ SOURCE_BROWSER = NO
110
+ INLINE_SOURCES = NO
111
+ STRIP_CODE_COMMENTS = YES
112
+ REFERENCED_BY_RELATION = NO
113
+ REFERENCES_RELATION = NO
114
+ REFERENCES_LINK_SOURCE = YES
115
+ USE_HTAGS = NO
116
+ VERBATIM_HEADERS = NO
117
+ #---------------------------------------------------------------------------
118
+ # configuration options related to the alphabetical class index
119
+ #---------------------------------------------------------------------------
120
+ ALPHABETICAL_INDEX = NO
121
+ COLS_IN_ALPHA_INDEX = 5
122
+ IGNORE_PREFIX =
123
+ #---------------------------------------------------------------------------
124
+ # configuration options related to the HTML output
125
+ #---------------------------------------------------------------------------
126
+ GENERATE_HTML = YES
127
+ HTML_OUTPUT = html
128
+ HTML_FILE_EXTENSION = .html
129
+ HTML_HEADER =
130
+ HTML_FOOTER =
131
+ HTML_STYLESHEET =
132
+ HTML_ALIGN_MEMBERS = YES
133
+ GENERATE_HTMLHELP = NO
134
+ HTML_DYNAMIC_SECTIONS = NO
135
+ CHM_FILE =
136
+ HHC_LOCATION =
137
+ GENERATE_CHI = NO
138
+ BINARY_TOC = NO
139
+ TOC_EXPAND = NO
140
+ DISABLE_INDEX = NO
141
+ ENUM_VALUES_PER_LINE = 4
142
+ GENERATE_TREEVIEW = NO
143
+ TREEVIEW_WIDTH = 250
144
+ #---------------------------------------------------------------------------
145
+ # configuration options related to the LaTeX output
146
+ #---------------------------------------------------------------------------
147
+ GENERATE_LATEX = NO
148
+ LATEX_OUTPUT = latex
149
+ LATEX_CMD_NAME = latex
150
+ MAKEINDEX_CMD_NAME = makeindex
151
+ COMPACT_LATEX = NO
152
+ PAPER_TYPE = a4wide
153
+ EXTRA_PACKAGES =
154
+ LATEX_HEADER =
155
+ PDF_HYPERLINKS = NO
156
+ USE_PDFLATEX = NO
157
+ LATEX_BATCHMODE = NO
158
+ LATEX_HIDE_INDICES = NO
159
+ #---------------------------------------------------------------------------
160
+ # configuration options related to the RTF output
161
+ #---------------------------------------------------------------------------
162
+ GENERATE_RTF = NO
163
+ RTF_OUTPUT = rtf
164
+ COMPACT_RTF = NO
165
+ RTF_HYPERLINKS = NO
166
+ RTF_STYLESHEET_FILE =
167
+ RTF_EXTENSIONS_FILE =
168
+ #---------------------------------------------------------------------------
169
+ # configuration options related to the man page output
170
+ #---------------------------------------------------------------------------
171
+ GENERATE_MAN = NO
172
+ MAN_OUTPUT = man
173
+ MAN_EXTENSION = .3
174
+ MAN_LINKS = YES
175
+ #---------------------------------------------------------------------------
176
+ # configuration options related to the XML output
177
+ #---------------------------------------------------------------------------
178
+ GENERATE_XML = NO
179
+ XML_OUTPUT = xml
180
+ XML_SCHEMA =
181
+ XML_DTD =
182
+ XML_PROGRAMLISTING = YES
183
+ #---------------------------------------------------------------------------
184
+ # configuration options for the AutoGen Definitions output
185
+ #---------------------------------------------------------------------------
186
+ GENERATE_AUTOGEN_DEF = NO
187
+ #---------------------------------------------------------------------------
188
+ # configuration options related to the Perl module output
189
+ #---------------------------------------------------------------------------
190
+ GENERATE_PERLMOD = NO
191
+ PERLMOD_LATEX = NO
192
+ PERLMOD_PRETTY = YES
193
+ PERLMOD_MAKEVAR_PREFIX =
194
+ #---------------------------------------------------------------------------
195
+ # Configuration options related to the preprocessor
196
+ #---------------------------------------------------------------------------
197
+ ENABLE_PREPROCESSING = YES
198
+ MACRO_EXPANSION = NO
199
+ EXPAND_ONLY_PREDEF = NO
200
+ SEARCH_INCLUDES = YES
201
+ INCLUDE_PATH =
202
+ INCLUDE_FILE_PATTERNS =
203
+ PREDEFINED =
204
+ EXPAND_AS_DEFINED =
205
+ SKIP_FUNCTION_MACROS = YES
206
+ #---------------------------------------------------------------------------
207
+ # Configuration::additions related to external references
208
+ #---------------------------------------------------------------------------
209
+ TAGFILES =
210
+ GENERATE_TAGFILE =
211
+ ALLEXTERNALS = NO
212
+ EXTERNAL_GROUPS = YES
213
+ PERL_PATH = /usr/bin/perl
214
+ #---------------------------------------------------------------------------
215
+ # Configuration options related to the dot tool
216
+ #---------------------------------------------------------------------------
217
+ CLASS_DIAGRAMS = NO
218
+ MSCGEN_PATH =
219
+ HIDE_UNDOC_RELATIONS = YES
220
+ HAVE_DOT = NO
221
+ CLASS_GRAPH = YES
222
+ COLLABORATION_GRAPH = YES
223
+ GROUP_GRAPHS = YES
224
+ UML_LOOK = NO
225
+ TEMPLATE_RELATIONS = NO
226
+ INCLUDE_GRAPH = YES
227
+ INCLUDED_BY_GRAPH = YES
228
+ CALL_GRAPH = NO
229
+ CALLER_GRAPH = NO
230
+ GRAPHICAL_HIERARCHY = YES
231
+ DIRECTORY_GRAPH = YES
232
+ DOT_IMAGE_FORMAT = png
233
+ DOT_PATH =
234
+ DOTFILE_DIRS =
235
+ DOT_GRAPH_MAX_NODES = 50
236
+ MAX_DOT_GRAPH_DEPTH = 1000
237
+ DOT_TRANSPARENT = NO
238
+ DOT_MULTI_TARGETS = NO
239
+ GENERATE_LEGEND = YES
240
+ DOT_CLEANUP = YES
241
+ #---------------------------------------------------------------------------
242
+ # Configuration::additions related to the search engine
243
+ #---------------------------------------------------------------------------
244
+ SEARCHENGINE = NO
@@ -0,0 +1,29 @@
1
+ if ENABLE_DOXYGEN_DOC
2
+
3
+ all-local: doxygen.stamp
4
+
5
+ doxygen.stamp: $(top_srcdir)/datrie/*.h
6
+ $(DOXYGEN)
7
+ touch doxygen.stamp
8
+
9
+ install-data-local: install-html
10
+
11
+ install-html:
12
+ $(INSTALL) -d $(DESTDIR)$(htmldocdir)
13
+ $(INSTALL_DATA) html/* $(DESTDIR)$(htmldocdir)
14
+
15
+ uninstall-local:
16
+ rm -rf $(DESTDIR)$(htmldocdir)
17
+
18
+ clean-local:
19
+ rm -rf html man
20
+ rm -f doxygen.stamp
21
+
22
+ else
23
+
24
+ install-data-local:
25
+ uninstall-local:
26
+ clean-local:
27
+
28
+ endif
29
+
@@ -0,0 +1,352 @@
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
+ srcdir = @srcdir@
17
+ top_srcdir = @top_srcdir@
18
+ VPATH = @srcdir@
19
+ pkgdatadir = $(datadir)/@PACKAGE@
20
+ pkglibdir = $(libdir)/@PACKAGE@
21
+ pkgincludedir = $(includedir)/@PACKAGE@
22
+ top_builddir = ..
23
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
+ INSTALL = @INSTALL@
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 = doc
39
+ DIST_COMMON = $(srcdir)/Doxyfile.in $(srcdir)/Makefile.am \
40
+ $(srcdir)/Makefile.in
41
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
+ am__aclocal_m4_deps = $(top_srcdir)/configure.ac
43
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
44
+ $(ACLOCAL_M4)
45
+ mkinstalldirs = $(install_sh) -d
46
+ CONFIG_HEADER = $(top_builddir)/config.h
47
+ CONFIG_CLEAN_FILES = Doxyfile
48
+ SOURCES =
49
+ DIST_SOURCES =
50
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
51
+ ACLOCAL = @ACLOCAL@
52
+ AMDEP_FALSE = @AMDEP_FALSE@
53
+ AMDEP_TRUE = @AMDEP_TRUE@
54
+ AMTAR = @AMTAR@
55
+ AR = @AR@
56
+ AS = @AS@
57
+ AUTOCONF = @AUTOCONF@
58
+ AUTOHEADER = @AUTOHEADER@
59
+ AUTOMAKE = @AUTOMAKE@
60
+ AWK = @AWK@
61
+ CC = @CC@
62
+ CCDEPMODE = @CCDEPMODE@
63
+ CFLAGS = @CFLAGS@
64
+ CPP = @CPP@
65
+ CPPFLAGS = @CPPFLAGS@
66
+ CXX = @CXX@
67
+ CXXCPP = @CXXCPP@
68
+ CXXDEPMODE = @CXXDEPMODE@
69
+ CXXFLAGS = @CXXFLAGS@
70
+ CYGPATH_W = @CYGPATH_W@
71
+ DEFS = @DEFS@
72
+ DEPDIR = @DEPDIR@
73
+ DLLTOOL = @DLLTOOL@
74
+ DOXYGEN = @DOXYGEN@
75
+ ECHO = @ECHO@
76
+ ECHO_C = @ECHO_C@
77
+ ECHO_N = @ECHO_N@
78
+ ECHO_T = @ECHO_T@
79
+ EGREP = @EGREP@
80
+ ENABLE_DOXYGEN_DOC_FALSE = @ENABLE_DOXYGEN_DOC_FALSE@
81
+ ENABLE_DOXYGEN_DOC_TRUE = @ENABLE_DOXYGEN_DOC_TRUE@
82
+ EXEEXT = @EXEEXT@
83
+ F77 = @F77@
84
+ FFLAGS = @FFLAGS@
85
+ GREP = @GREP@
86
+ INSTALL_DATA = @INSTALL_DATA@
87
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
88
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
89
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
90
+ LDFLAGS = @LDFLAGS@
91
+ LIBOBJS = @LIBOBJS@
92
+ LIBS = @LIBS@
93
+ LIBTOOL = @LIBTOOL@
94
+ LN_S = @LN_S@
95
+ LTLIBOBJS = @LTLIBOBJS@
96
+ LT_AGE = @LT_AGE@
97
+ LT_CURRENT = @LT_CURRENT@
98
+ LT_REVISION = @LT_REVISION@
99
+ MAKEINFO = @MAKEINFO@
100
+ OBJDUMP = @OBJDUMP@
101
+ OBJEXT = @OBJEXT@
102
+ PACKAGE = @PACKAGE@
103
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
104
+ PACKAGE_NAME = @PACKAGE_NAME@
105
+ PACKAGE_STRING = @PACKAGE_STRING@
106
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
107
+ PACKAGE_VERSION = @PACKAGE_VERSION@
108
+ PATH_SEPARATOR = @PATH_SEPARATOR@
109
+ RANLIB = @RANLIB@
110
+ SED = @SED@
111
+ SET_MAKE = @SET_MAKE@
112
+ SHELL = @SHELL@
113
+ STRIP = @STRIP@
114
+ VERSION = @VERSION@
115
+ ac_ct_CC = @ac_ct_CC@
116
+ ac_ct_CXX = @ac_ct_CXX@
117
+ ac_ct_F77 = @ac_ct_F77@
118
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
119
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
120
+ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
121
+ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
122
+ am__include = @am__include@
123
+ am__leading_dot = @am__leading_dot@
124
+ am__quote = @am__quote@
125
+ am__tar = @am__tar@
126
+ am__untar = @am__untar@
127
+ bindir = @bindir@
128
+ build = @build@
129
+ build_alias = @build_alias@
130
+ build_cpu = @build_cpu@
131
+ build_os = @build_os@
132
+ build_vendor = @build_vendor@
133
+ datadir = @datadir@
134
+ datarootdir = @datarootdir@
135
+ docdir = @docdir@
136
+ dvidir = @dvidir@
137
+ exec_prefix = @exec_prefix@
138
+ host = @host@
139
+ host_alias = @host_alias@
140
+ host_cpu = @host_cpu@
141
+ host_os = @host_os@
142
+ host_vendor = @host_vendor@
143
+ htmldir = @htmldir@
144
+ htmldocdir = @htmldocdir@
145
+ includedir = @includedir@
146
+ infodir = @infodir@
147
+ install_sh = @install_sh@
148
+ libdir = @libdir@
149
+ libexecdir = @libexecdir@
150
+ localedir = @localedir@
151
+ localstatedir = @localstatedir@
152
+ mandir = @mandir@
153
+ mkdir_p = @mkdir_p@
154
+ oldincludedir = @oldincludedir@
155
+ pdfdir = @pdfdir@
156
+ prefix = @prefix@
157
+ program_transform_name = @program_transform_name@
158
+ psdir = @psdir@
159
+ sbindir = @sbindir@
160
+ sharedstatedir = @sharedstatedir@
161
+ sysconfdir = @sysconfdir@
162
+ target_alias = @target_alias@
163
+ all: all-am
164
+
165
+ .SUFFIXES:
166
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
167
+ @for dep in $?; do \
168
+ case '$(am__configure_deps)' in \
169
+ *$$dep*) \
170
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
171
+ && exit 0; \
172
+ exit 1;; \
173
+ esac; \
174
+ done; \
175
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
176
+ cd $(top_srcdir) && \
177
+ $(AUTOMAKE) --gnu doc/Makefile
178
+ .PRECIOUS: Makefile
179
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
180
+ @case '$?' in \
181
+ *config.status*) \
182
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
183
+ *) \
184
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
185
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
186
+ esac;
187
+
188
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
189
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
190
+
191
+ $(top_srcdir)/configure: $(am__configure_deps)
192
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
193
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
194
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
195
+ Doxyfile: $(top_builddir)/config.status $(srcdir)/Doxyfile.in
196
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
197
+
198
+ mostlyclean-libtool:
199
+ -rm -f *.lo
200
+
201
+ clean-libtool:
202
+ -rm -rf .libs _libs
203
+
204
+ distclean-libtool:
205
+ -rm -f libtool
206
+ uninstall-info-am:
207
+ tags: TAGS
208
+ TAGS:
209
+
210
+ ctags: CTAGS
211
+ CTAGS:
212
+
213
+
214
+ distdir: $(DISTFILES)
215
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
216
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
217
+ list='$(DISTFILES)'; for file in $$list; do \
218
+ case $$file in \
219
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
220
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
221
+ esac; \
222
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
223
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
224
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
225
+ dir="/$$dir"; \
226
+ $(mkdir_p) "$(distdir)$$dir"; \
227
+ else \
228
+ dir=''; \
229
+ fi; \
230
+ if test -d $$d/$$file; then \
231
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
232
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
233
+ fi; \
234
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
235
+ else \
236
+ test -f $(distdir)/$$file \
237
+ || cp -p $$d/$$file $(distdir)/$$file \
238
+ || exit 1; \
239
+ fi; \
240
+ done
241
+ check-am: all-am
242
+ check: check-am
243
+ @ENABLE_DOXYGEN_DOC_FALSE@all-local:
244
+ all-am: Makefile all-local
245
+ installdirs:
246
+ install: install-am
247
+ install-exec: install-exec-am
248
+ install-data: install-data-am
249
+ uninstall: uninstall-am
250
+
251
+ install-am: all-am
252
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
253
+
254
+ installcheck: installcheck-am
255
+ install-strip:
256
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
257
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
258
+ `test -z '$(STRIP)' || \
259
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
260
+ mostlyclean-generic:
261
+
262
+ clean-generic:
263
+
264
+ distclean-generic:
265
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
266
+
267
+ maintainer-clean-generic:
268
+ @echo "This command is intended for maintainers to use"
269
+ @echo "it deletes files that may require special tools to rebuild."
270
+ clean: clean-am
271
+
272
+ clean-am: clean-generic clean-libtool clean-local mostlyclean-am
273
+
274
+ distclean: distclean-am
275
+ -rm -f Makefile
276
+ distclean-am: clean-am distclean-generic distclean-libtool
277
+
278
+ dvi: dvi-am
279
+
280
+ dvi-am:
281
+
282
+ html: html-am
283
+
284
+ info: info-am
285
+
286
+ info-am:
287
+
288
+ install-data-am: install-data-local
289
+
290
+ install-exec-am:
291
+
292
+ install-info: install-info-am
293
+
294
+ install-man:
295
+
296
+ installcheck-am:
297
+
298
+ maintainer-clean: maintainer-clean-am
299
+ -rm -f Makefile
300
+ maintainer-clean-am: distclean-am maintainer-clean-generic
301
+
302
+ mostlyclean: mostlyclean-am
303
+
304
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
305
+
306
+ pdf: pdf-am
307
+
308
+ pdf-am:
309
+
310
+ ps: ps-am
311
+
312
+ ps-am:
313
+
314
+ uninstall-am: uninstall-info-am uninstall-local
315
+
316
+ .PHONY: all all-am all-local check check-am clean clean-generic \
317
+ clean-libtool clean-local distclean distclean-generic \
318
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
319
+ install install-am install-data install-data-am \
320
+ install-data-local install-exec install-exec-am install-info \
321
+ install-info-am install-man install-strip installcheck \
322
+ installcheck-am installdirs maintainer-clean \
323
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
324
+ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
325
+ uninstall-info-am uninstall-local
326
+
327
+
328
+ @ENABLE_DOXYGEN_DOC_TRUE@all-local: doxygen.stamp
329
+
330
+ @ENABLE_DOXYGEN_DOC_TRUE@doxygen.stamp: $(top_srcdir)/datrie/*.h
331
+ @ENABLE_DOXYGEN_DOC_TRUE@ $(DOXYGEN)
332
+ @ENABLE_DOXYGEN_DOC_TRUE@ touch doxygen.stamp
333
+
334
+ @ENABLE_DOXYGEN_DOC_TRUE@install-data-local: install-html
335
+
336
+ @ENABLE_DOXYGEN_DOC_TRUE@install-html:
337
+ @ENABLE_DOXYGEN_DOC_TRUE@ $(INSTALL) -d $(DESTDIR)$(htmldocdir)
338
+ @ENABLE_DOXYGEN_DOC_TRUE@ $(INSTALL_DATA) html/* $(DESTDIR)$(htmldocdir)
339
+
340
+ @ENABLE_DOXYGEN_DOC_TRUE@uninstall-local:
341
+ @ENABLE_DOXYGEN_DOC_TRUE@ rm -rf $(DESTDIR)$(htmldocdir)
342
+
343
+ @ENABLE_DOXYGEN_DOC_TRUE@clean-local:
344
+ @ENABLE_DOXYGEN_DOC_TRUE@ rm -rf html man
345
+ @ENABLE_DOXYGEN_DOC_TRUE@ rm -f doxygen.stamp
346
+
347
+ @ENABLE_DOXYGEN_DOC_FALSE@install-data-local:
348
+ @ENABLE_DOXYGEN_DOC_FALSE@uninstall-local:
349
+ @ENABLE_DOXYGEN_DOC_FALSE@clean-local:
350
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
351
+ # Otherwise a system limit (for SysV at least) may be exceeded.
352
+ .NOEXPORT: