tyler-trie 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/VERSION.yml +1 -1
  2. data/ext/trie/extconf.rb +1 -3
  3. metadata +4 -65
  4. data/ext/libdatrie/AUTHORS +0 -1
  5. data/ext/libdatrie/COPYING +0 -510
  6. data/ext/libdatrie/ChangeLog +0 -410
  7. data/ext/libdatrie/INSTALL +0 -236
  8. data/ext/libdatrie/Makefile.am +0 -5
  9. data/ext/libdatrie/Makefile.in +0 -661
  10. data/ext/libdatrie/NEWS +0 -27
  11. data/ext/libdatrie/README +0 -32
  12. data/ext/libdatrie/aclocal.m4 +0 -7431
  13. data/ext/libdatrie/config.guess +0 -1516
  14. data/ext/libdatrie/config.h.in +0 -74
  15. data/ext/libdatrie/config.sub +0 -1626
  16. data/ext/libdatrie/configure +0 -22008
  17. data/ext/libdatrie/configure.ac +0 -71
  18. data/ext/libdatrie/datrie.pc.in +0 -11
  19. data/ext/libdatrie/datrie/Makefile.am +0 -35
  20. data/ext/libdatrie/datrie/Makefile.in +0 -522
  21. data/ext/libdatrie/datrie/alpha-map.c +0 -170
  22. data/ext/libdatrie/datrie/alpha-map.h +0 -36
  23. data/ext/libdatrie/datrie/darray.c +0 -674
  24. data/ext/libdatrie/datrie/darray.h +0 -229
  25. data/ext/libdatrie/datrie/fileutils.c +0 -151
  26. data/ext/libdatrie/datrie/fileutils.h +0 -36
  27. data/ext/libdatrie/datrie/libdatrie.def +0 -31
  28. data/ext/libdatrie/datrie/sb-trie.c +0 -331
  29. data/ext/libdatrie/datrie/sb-trie.h +0 -279
  30. data/ext/libdatrie/datrie/tail.c +0 -344
  31. data/ext/libdatrie/datrie/tail.h +0 -200
  32. data/ext/libdatrie/datrie/trie-private.h +0 -31
  33. data/ext/libdatrie/datrie/trie.c +0 -413
  34. data/ext/libdatrie/datrie/trie.h +0 -270
  35. data/ext/libdatrie/datrie/triedefs.h +0 -63
  36. data/ext/libdatrie/datrie/typedefs.h +0 -113
  37. data/ext/libdatrie/depcomp +0 -530
  38. data/ext/libdatrie/doc/Doxyfile.in +0 -244
  39. data/ext/libdatrie/doc/Makefile.am +0 -29
  40. data/ext/libdatrie/doc/Makefile.in +0 -352
  41. data/ext/libdatrie/install-sh +0 -323
  42. data/ext/libdatrie/ltmain.sh +0 -6938
  43. data/ext/libdatrie/man/Makefile.am +0 -4
  44. data/ext/libdatrie/man/Makefile.in +0 -381
  45. data/ext/libdatrie/man/trietool.1 +0 -107
  46. data/ext/libdatrie/missing +0 -360
  47. data/ext/libdatrie/tools/Makefile.am +0 -7
  48. data/ext/libdatrie/tools/Makefile.in +0 -460
  49. data/ext/libdatrie/tools/trietool.c +0 -308
@@ -1,360 +0,0 @@
1
- #! /bin/sh
2
- # Common stub for a few missing GNU programs while installing.
3
-
4
- scriptversion=2005-06-08.21
5
-
6
- # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
7
- # Free Software Foundation, Inc.
8
- # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
9
-
10
- # This program is free software; you can redistribute it and/or modify
11
- # it under the terms of the GNU General Public License as published by
12
- # the Free Software Foundation; either version 2, or (at your option)
13
- # any later version.
14
-
15
- # This program is distributed in the hope that it will be useful,
16
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
17
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
- # GNU General Public License for more details.
19
-
20
- # You should have received a copy of the GNU General Public License
21
- # along with this program; if not, write to the Free Software
22
- # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23
- # 02110-1301, USA.
24
-
25
- # As a special exception to the GNU General Public License, if you
26
- # distribute this file as part of a program that contains a
27
- # configuration script generated by Autoconf, you may include it under
28
- # the same distribution terms that you use for the rest of that program.
29
-
30
- if test $# -eq 0; then
31
- echo 1>&2 "Try \`$0 --help' for more information"
32
- exit 1
33
- fi
34
-
35
- run=:
36
-
37
- # In the cases where this matters, `missing' is being run in the
38
- # srcdir already.
39
- if test -f configure.ac; then
40
- configure_ac=configure.ac
41
- else
42
- configure_ac=configure.in
43
- fi
44
-
45
- msg="missing on your system"
46
-
47
- case "$1" in
48
- --run)
49
- # Try to run requested program, and just exit if it succeeds.
50
- run=
51
- shift
52
- "$@" && exit 0
53
- # Exit code 63 means version mismatch. This often happens
54
- # when the user try to use an ancient version of a tool on
55
- # a file that requires a minimum version. In this case we
56
- # we should proceed has if the program had been absent, or
57
- # if --run hadn't been passed.
58
- if test $? = 63; then
59
- run=:
60
- msg="probably too old"
61
- fi
62
- ;;
63
-
64
- -h|--h|--he|--hel|--help)
65
- echo "\
66
- $0 [OPTION]... PROGRAM [ARGUMENT]...
67
-
68
- Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
69
- error status if there is no known handling for PROGRAM.
70
-
71
- Options:
72
- -h, --help display this help and exit
73
- -v, --version output version information and exit
74
- --run try to run the given command, and emulate it if it fails
75
-
76
- Supported PROGRAM values:
77
- aclocal touch file \`aclocal.m4'
78
- autoconf touch file \`configure'
79
- autoheader touch file \`config.h.in'
80
- automake touch all \`Makefile.in' files
81
- bison create \`y.tab.[ch]', if possible, from existing .[ch]
82
- flex create \`lex.yy.c', if possible, from existing .c
83
- help2man touch the output file
84
- lex create \`lex.yy.c', if possible, from existing .c
85
- makeinfo touch the output file
86
- tar try tar, gnutar, gtar, then tar without non-portable flags
87
- yacc create \`y.tab.[ch]', if possible, from existing .[ch]
88
-
89
- Send bug reports to <bug-automake@gnu.org>."
90
- exit $?
91
- ;;
92
-
93
- -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
94
- echo "missing $scriptversion (GNU Automake)"
95
- exit $?
96
- ;;
97
-
98
- -*)
99
- echo 1>&2 "$0: Unknown \`$1' option"
100
- echo 1>&2 "Try \`$0 --help' for more information"
101
- exit 1
102
- ;;
103
-
104
- esac
105
-
106
- # Now exit if we have it, but it failed. Also exit now if we
107
- # don't have it and --version was passed (most likely to detect
108
- # the program).
109
- case "$1" in
110
- lex|yacc)
111
- # Not GNU programs, they don't have --version.
112
- ;;
113
-
114
- tar)
115
- if test -n "$run"; then
116
- echo 1>&2 "ERROR: \`tar' requires --run"
117
- exit 1
118
- elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
119
- exit 1
120
- fi
121
- ;;
122
-
123
- *)
124
- if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
125
- # We have it, but it failed.
126
- exit 1
127
- elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
128
- # Could not run --version or --help. This is probably someone
129
- # running `$TOOL --version' or `$TOOL --help' to check whether
130
- # $TOOL exists and not knowing $TOOL uses missing.
131
- exit 1
132
- fi
133
- ;;
134
- esac
135
-
136
- # If it does not exist, or fails to run (possibly an outdated version),
137
- # try to emulate it.
138
- case "$1" in
139
- aclocal*)
140
- echo 1>&2 "\
141
- WARNING: \`$1' is $msg. You should only need it if
142
- you modified \`acinclude.m4' or \`${configure_ac}'. You might want
143
- to install the \`Automake' and \`Perl' packages. Grab them from
144
- any GNU archive site."
145
- touch aclocal.m4
146
- ;;
147
-
148
- autoconf)
149
- echo 1>&2 "\
150
- WARNING: \`$1' is $msg. You should only need it if
151
- you modified \`${configure_ac}'. You might want to install the
152
- \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
153
- archive site."
154
- touch configure
155
- ;;
156
-
157
- autoheader)
158
- echo 1>&2 "\
159
- WARNING: \`$1' is $msg. You should only need it if
160
- you modified \`acconfig.h' or \`${configure_ac}'. You might want
161
- to install the \`Autoconf' and \`GNU m4' packages. Grab them
162
- from any GNU archive site."
163
- files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
164
- test -z "$files" && files="config.h"
165
- touch_files=
166
- for f in $files; do
167
- case "$f" in
168
- *:*) touch_files="$touch_files "`echo "$f" |
169
- sed -e 's/^[^:]*://' -e 's/:.*//'`;;
170
- *) touch_files="$touch_files $f.in";;
171
- esac
172
- done
173
- touch $touch_files
174
- ;;
175
-
176
- automake*)
177
- echo 1>&2 "\
178
- WARNING: \`$1' is $msg. You should only need it if
179
- you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
180
- You might want to install the \`Automake' and \`Perl' packages.
181
- Grab them from any GNU archive site."
182
- find . -type f -name Makefile.am -print |
183
- sed 's/\.am$/.in/' |
184
- while read f; do touch "$f"; done
185
- ;;
186
-
187
- autom4te)
188
- echo 1>&2 "\
189
- WARNING: \`$1' is needed, but is $msg.
190
- You might have modified some files without having the
191
- proper tools for further handling them.
192
- You can get \`$1' as part of \`Autoconf' from any GNU
193
- archive site."
194
-
195
- file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
196
- test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
197
- if test -f "$file"; then
198
- touch $file
199
- else
200
- test -z "$file" || exec >$file
201
- echo "#! /bin/sh"
202
- echo "# Created by GNU Automake missing as a replacement of"
203
- echo "# $ $@"
204
- echo "exit 0"
205
- chmod +x $file
206
- exit 1
207
- fi
208
- ;;
209
-
210
- bison|yacc)
211
- echo 1>&2 "\
212
- WARNING: \`$1' $msg. You should only need it if
213
- you modified a \`.y' file. You may need the \`Bison' package
214
- in order for those modifications to take effect. You can get
215
- \`Bison' from any GNU archive site."
216
- rm -f y.tab.c y.tab.h
217
- if [ $# -ne 1 ]; then
218
- eval LASTARG="\${$#}"
219
- case "$LASTARG" in
220
- *.y)
221
- SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
222
- if [ -f "$SRCFILE" ]; then
223
- cp "$SRCFILE" y.tab.c
224
- fi
225
- SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
226
- if [ -f "$SRCFILE" ]; then
227
- cp "$SRCFILE" y.tab.h
228
- fi
229
- ;;
230
- esac
231
- fi
232
- if [ ! -f y.tab.h ]; then
233
- echo >y.tab.h
234
- fi
235
- if [ ! -f y.tab.c ]; then
236
- echo 'main() { return 0; }' >y.tab.c
237
- fi
238
- ;;
239
-
240
- lex|flex)
241
- echo 1>&2 "\
242
- WARNING: \`$1' is $msg. You should only need it if
243
- you modified a \`.l' file. You may need the \`Flex' package
244
- in order for those modifications to take effect. You can get
245
- \`Flex' from any GNU archive site."
246
- rm -f lex.yy.c
247
- if [ $# -ne 1 ]; then
248
- eval LASTARG="\${$#}"
249
- case "$LASTARG" in
250
- *.l)
251
- SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
252
- if [ -f "$SRCFILE" ]; then
253
- cp "$SRCFILE" lex.yy.c
254
- fi
255
- ;;
256
- esac
257
- fi
258
- if [ ! -f lex.yy.c ]; then
259
- echo 'main() { return 0; }' >lex.yy.c
260
- fi
261
- ;;
262
-
263
- help2man)
264
- echo 1>&2 "\
265
- WARNING: \`$1' is $msg. You should only need it if
266
- you modified a dependency of a manual page. You may need the
267
- \`Help2man' package in order for those modifications to take
268
- effect. You can get \`Help2man' from any GNU archive site."
269
-
270
- file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
271
- if test -z "$file"; then
272
- file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
273
- fi
274
- if [ -f "$file" ]; then
275
- touch $file
276
- else
277
- test -z "$file" || exec >$file
278
- echo ".ab help2man is required to generate this page"
279
- exit 1
280
- fi
281
- ;;
282
-
283
- makeinfo)
284
- echo 1>&2 "\
285
- WARNING: \`$1' is $msg. You should only need it if
286
- you modified a \`.texi' or \`.texinfo' file, or any other file
287
- indirectly affecting the aspect of the manual. The spurious
288
- call might also be the consequence of using a buggy \`make' (AIX,
289
- DU, IRIX). You might want to install the \`Texinfo' package or
290
- the \`GNU make' package. Grab either from any GNU archive site."
291
- # The file to touch is that specified with -o ...
292
- file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
293
- if test -z "$file"; then
294
- # ... or it is the one specified with @setfilename ...
295
- infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296
- file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
297
- # ... or it is derived from the source name (dir/f.texi becomes f.info)
298
- test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
299
- fi
300
- # If the file does not exist, the user really needs makeinfo;
301
- # let's fail without touching anything.
302
- test -f $file || exit 1
303
- touch $file
304
- ;;
305
-
306
- tar)
307
- shift
308
-
309
- # We have already tried tar in the generic part.
310
- # Look for gnutar/gtar before invocation to avoid ugly error
311
- # messages.
312
- if (gnutar --version > /dev/null 2>&1); then
313
- gnutar "$@" && exit 0
314
- fi
315
- if (gtar --version > /dev/null 2>&1); then
316
- gtar "$@" && exit 0
317
- fi
318
- firstarg="$1"
319
- if shift; then
320
- case "$firstarg" in
321
- *o*)
322
- firstarg=`echo "$firstarg" | sed s/o//`
323
- tar "$firstarg" "$@" && exit 0
324
- ;;
325
- esac
326
- case "$firstarg" in
327
- *h*)
328
- firstarg=`echo "$firstarg" | sed s/h//`
329
- tar "$firstarg" "$@" && exit 0
330
- ;;
331
- esac
332
- fi
333
-
334
- echo 1>&2 "\
335
- WARNING: I can't seem to be able to run \`tar' with the given arguments.
336
- You may want to install GNU tar or Free paxutils, or check the
337
- command line arguments."
338
- exit 1
339
- ;;
340
-
341
- *)
342
- echo 1>&2 "\
343
- WARNING: \`$1' is needed, and is $msg.
344
- You might have modified some files without having the
345
- proper tools for further handling them. Check the \`README' file,
346
- it often tells you about the needed prerequisites for installing
347
- this package. You may also peek at any GNU archive site, in case
348
- some other package would contain this missing \`$1' program."
349
- exit 1
350
- ;;
351
- esac
352
-
353
- exit 0
354
-
355
- # Local variables:
356
- # eval: (add-hook 'write-file-hooks 'time-stamp)
357
- # time-stamp-start: "scriptversion="
358
- # time-stamp-format: "%:y-%02m-%02d.%02H"
359
- # time-stamp-end: "$"
360
- # End:
@@ -1,7 +0,0 @@
1
- INCLUDES = -I$(top_srcdir)
2
-
3
- bin_PROGRAMS = trietool
4
-
5
- trietool_SOURCES = trietool.c
6
- trietool_LDADD = $(top_builddir)/datrie/libdatrie.la
7
-
@@ -1,460 +0,0 @@
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
- srcdir = @srcdir@
18
- top_srcdir = @top_srcdir@
19
- VPATH = @srcdir@
20
- pkgdatadir = $(datadir)/@PACKAGE@
21
- pkglibdir = $(libdir)/@PACKAGE@
22
- pkgincludedir = $(includedir)/@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
- bin_PROGRAMS = trietool$(EXEEXT)
40
- subdir = tools
41
- DIST_COMMON = $(srcdir)/Makefile.am $(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__installdirs = "$(DESTDIR)$(bindir)"
50
- binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
51
- PROGRAMS = $(bin_PROGRAMS)
52
- am_trietool_OBJECTS = trietool.$(OBJEXT)
53
- trietool_OBJECTS = $(am_trietool_OBJECTS)
54
- trietool_DEPENDENCIES = $(top_builddir)/datrie/libdatrie.la
55
- DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
56
- depcomp = $(SHELL) $(top_srcdir)/depcomp
57
- am__depfiles_maybe = depfiles
58
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
59
- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
60
- LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
61
- $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
62
- $(AM_CFLAGS) $(CFLAGS)
63
- CCLD = $(CC)
64
- LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
65
- $(AM_LDFLAGS) $(LDFLAGS) -o $@
66
- SOURCES = $(trietool_SOURCES)
67
- DIST_SOURCES = $(trietool_SOURCES)
68
- ETAGS = etags
69
- CTAGS = ctags
70
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
71
- ACLOCAL = @ACLOCAL@
72
- AMDEP_FALSE = @AMDEP_FALSE@
73
- AMDEP_TRUE = @AMDEP_TRUE@
74
- AMTAR = @AMTAR@
75
- AR = @AR@
76
- AS = @AS@
77
- AUTOCONF = @AUTOCONF@
78
- AUTOHEADER = @AUTOHEADER@
79
- AUTOMAKE = @AUTOMAKE@
80
- AWK = @AWK@
81
- CC = @CC@
82
- CCDEPMODE = @CCDEPMODE@
83
- CFLAGS = @CFLAGS@
84
- CPP = @CPP@
85
- CPPFLAGS = @CPPFLAGS@
86
- CXX = @CXX@
87
- CXXCPP = @CXXCPP@
88
- CXXDEPMODE = @CXXDEPMODE@
89
- CXXFLAGS = @CXXFLAGS@
90
- CYGPATH_W = @CYGPATH_W@
91
- DEFS = @DEFS@
92
- DEPDIR = @DEPDIR@
93
- DLLTOOL = @DLLTOOL@
94
- DOXYGEN = @DOXYGEN@
95
- ECHO = @ECHO@
96
- ECHO_C = @ECHO_C@
97
- ECHO_N = @ECHO_N@
98
- ECHO_T = @ECHO_T@
99
- EGREP = @EGREP@
100
- ENABLE_DOXYGEN_DOC_FALSE = @ENABLE_DOXYGEN_DOC_FALSE@
101
- ENABLE_DOXYGEN_DOC_TRUE = @ENABLE_DOXYGEN_DOC_TRUE@
102
- EXEEXT = @EXEEXT@
103
- F77 = @F77@
104
- FFLAGS = @FFLAGS@
105
- GREP = @GREP@
106
- INSTALL_DATA = @INSTALL_DATA@
107
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
108
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
109
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
110
- LDFLAGS = @LDFLAGS@
111
- LIBOBJS = @LIBOBJS@
112
- LIBS = @LIBS@
113
- LIBTOOL = @LIBTOOL@
114
- LN_S = @LN_S@
115
- LTLIBOBJS = @LTLIBOBJS@
116
- LT_AGE = @LT_AGE@
117
- LT_CURRENT = @LT_CURRENT@
118
- LT_REVISION = @LT_REVISION@
119
- MAKEINFO = @MAKEINFO@
120
- OBJDUMP = @OBJDUMP@
121
- OBJEXT = @OBJEXT@
122
- PACKAGE = @PACKAGE@
123
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
124
- PACKAGE_NAME = @PACKAGE_NAME@
125
- PACKAGE_STRING = @PACKAGE_STRING@
126
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
127
- PACKAGE_VERSION = @PACKAGE_VERSION@
128
- PATH_SEPARATOR = @PATH_SEPARATOR@
129
- RANLIB = @RANLIB@
130
- SED = @SED@
131
- SET_MAKE = @SET_MAKE@
132
- SHELL = @SHELL@
133
- STRIP = @STRIP@
134
- VERSION = @VERSION@
135
- ac_ct_CC = @ac_ct_CC@
136
- ac_ct_CXX = @ac_ct_CXX@
137
- ac_ct_F77 = @ac_ct_F77@
138
- am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
139
- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
140
- am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
141
- am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
142
- am__include = @am__include@
143
- am__leading_dot = @am__leading_dot@
144
- am__quote = @am__quote@
145
- am__tar = @am__tar@
146
- am__untar = @am__untar@
147
- bindir = @bindir@
148
- build = @build@
149
- build_alias = @build_alias@
150
- build_cpu = @build_cpu@
151
- build_os = @build_os@
152
- build_vendor = @build_vendor@
153
- datadir = @datadir@
154
- datarootdir = @datarootdir@
155
- docdir = @docdir@
156
- dvidir = @dvidir@
157
- exec_prefix = @exec_prefix@
158
- host = @host@
159
- host_alias = @host_alias@
160
- host_cpu = @host_cpu@
161
- host_os = @host_os@
162
- host_vendor = @host_vendor@
163
- htmldir = @htmldir@
164
- htmldocdir = @htmldocdir@
165
- includedir = @includedir@
166
- infodir = @infodir@
167
- install_sh = @install_sh@
168
- libdir = @libdir@
169
- libexecdir = @libexecdir@
170
- localedir = @localedir@
171
- localstatedir = @localstatedir@
172
- mandir = @mandir@
173
- mkdir_p = @mkdir_p@
174
- oldincludedir = @oldincludedir@
175
- pdfdir = @pdfdir@
176
- prefix = @prefix@
177
- program_transform_name = @program_transform_name@
178
- psdir = @psdir@
179
- sbindir = @sbindir@
180
- sharedstatedir = @sharedstatedir@
181
- sysconfdir = @sysconfdir@
182
- target_alias = @target_alias@
183
- INCLUDES = -I$(top_srcdir)
184
- trietool_SOURCES = trietool.c
185
- trietool_LDADD = $(top_builddir)/datrie/libdatrie.la
186
- all: all-am
187
-
188
- .SUFFIXES:
189
- .SUFFIXES: .c .lo .o .obj
190
- $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
191
- @for dep in $?; do \
192
- case '$(am__configure_deps)' in \
193
- *$$dep*) \
194
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
195
- && exit 0; \
196
- exit 1;; \
197
- esac; \
198
- done; \
199
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \
200
- cd $(top_srcdir) && \
201
- $(AUTOMAKE) --gnu tools/Makefile
202
- .PRECIOUS: Makefile
203
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
204
- @case '$?' in \
205
- *config.status*) \
206
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
207
- *) \
208
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
209
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
210
- esac;
211
-
212
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
213
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
214
-
215
- $(top_srcdir)/configure: $(am__configure_deps)
216
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
217
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
218
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
219
- install-binPROGRAMS: $(bin_PROGRAMS)
220
- @$(NORMAL_INSTALL)
221
- test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
222
- @list='$(bin_PROGRAMS)'; for p in $$list; do \
223
- p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
224
- if test -f $$p \
225
- || test -f $$p1 \
226
- ; then \
227
- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
228
- echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
229
- $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
230
- else :; fi; \
231
- done
232
-
233
- uninstall-binPROGRAMS:
234
- @$(NORMAL_UNINSTALL)
235
- @list='$(bin_PROGRAMS)'; for p in $$list; do \
236
- f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
237
- echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
238
- rm -f "$(DESTDIR)$(bindir)/$$f"; \
239
- done
240
-
241
- clean-binPROGRAMS:
242
- @list='$(bin_PROGRAMS)'; for p in $$list; do \
243
- f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
244
- echo " rm -f $$p $$f"; \
245
- rm -f $$p $$f ; \
246
- done
247
- trietool$(EXEEXT): $(trietool_OBJECTS) $(trietool_DEPENDENCIES)
248
- @rm -f trietool$(EXEEXT)
249
- $(LINK) $(trietool_LDFLAGS) $(trietool_OBJECTS) $(trietool_LDADD) $(LIBS)
250
-
251
- mostlyclean-compile:
252
- -rm -f *.$(OBJEXT)
253
-
254
- distclean-compile:
255
- -rm -f *.tab.c
256
-
257
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trietool.Po@am__quote@
258
-
259
- .c.o:
260
- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
261
- @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
262
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
263
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
264
- @am__fastdepCC_FALSE@ $(COMPILE) -c $<
265
-
266
- .c.obj:
267
- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
268
- @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
269
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
270
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
271
- @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
272
-
273
- .c.lo:
274
- @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
275
- @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
276
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
277
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
278
- @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
279
-
280
- mostlyclean-libtool:
281
- -rm -f *.lo
282
-
283
- clean-libtool:
284
- -rm -rf .libs _libs
285
-
286
- distclean-libtool:
287
- -rm -f libtool
288
- uninstall-info-am:
289
-
290
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
291
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
292
- unique=`for i in $$list; do \
293
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
294
- done | \
295
- $(AWK) ' { files[$$0] = 1; } \
296
- END { for (i in files) print i; }'`; \
297
- mkid -fID $$unique
298
- tags: TAGS
299
-
300
- TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
301
- $(TAGS_FILES) $(LISP)
302
- tags=; \
303
- here=`pwd`; \
304
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
305
- unique=`for i in $$list; do \
306
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
307
- done | \
308
- $(AWK) ' { files[$$0] = 1; } \
309
- END { for (i in files) print i; }'`; \
310
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
311
- test -n "$$unique" || unique=$$empty_fix; \
312
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
313
- $$tags $$unique; \
314
- fi
315
- ctags: CTAGS
316
- CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
317
- $(TAGS_FILES) $(LISP)
318
- tags=; \
319
- here=`pwd`; \
320
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
321
- unique=`for i in $$list; do \
322
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
323
- done | \
324
- $(AWK) ' { files[$$0] = 1; } \
325
- END { for (i in files) print i; }'`; \
326
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
327
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
328
- $$tags $$unique
329
-
330
- GTAGS:
331
- here=`$(am__cd) $(top_builddir) && pwd` \
332
- && cd $(top_srcdir) \
333
- && gtags -i $(GTAGS_ARGS) $$here
334
-
335
- distclean-tags:
336
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
337
-
338
- distdir: $(DISTFILES)
339
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
340
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
341
- list='$(DISTFILES)'; for file in $$list; do \
342
- case $$file in \
343
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
344
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
345
- esac; \
346
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
347
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
348
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
349
- dir="/$$dir"; \
350
- $(mkdir_p) "$(distdir)$$dir"; \
351
- else \
352
- dir=''; \
353
- fi; \
354
- if test -d $$d/$$file; then \
355
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
356
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
357
- fi; \
358
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
359
- else \
360
- test -f $(distdir)/$$file \
361
- || cp -p $$d/$$file $(distdir)/$$file \
362
- || exit 1; \
363
- fi; \
364
- done
365
- check-am: all-am
366
- check: check-am
367
- all-am: Makefile $(PROGRAMS)
368
- installdirs:
369
- for dir in "$(DESTDIR)$(bindir)"; do \
370
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
371
- done
372
- install: install-am
373
- install-exec: install-exec-am
374
- install-data: install-data-am
375
- uninstall: uninstall-am
376
-
377
- install-am: all-am
378
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
379
-
380
- installcheck: installcheck-am
381
- install-strip:
382
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
383
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
384
- `test -z '$(STRIP)' || \
385
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
386
- mostlyclean-generic:
387
-
388
- clean-generic:
389
-
390
- distclean-generic:
391
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
392
-
393
- maintainer-clean-generic:
394
- @echo "This command is intended for maintainers to use"
395
- @echo "it deletes files that may require special tools to rebuild."
396
- clean: clean-am
397
-
398
- clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
399
-
400
- distclean: distclean-am
401
- -rm -rf ./$(DEPDIR)
402
- -rm -f Makefile
403
- distclean-am: clean-am distclean-compile distclean-generic \
404
- distclean-libtool distclean-tags
405
-
406
- dvi: dvi-am
407
-
408
- dvi-am:
409
-
410
- html: html-am
411
-
412
- info: info-am
413
-
414
- info-am:
415
-
416
- install-data-am:
417
-
418
- install-exec-am: install-binPROGRAMS
419
-
420
- install-info: install-info-am
421
-
422
- install-man:
423
-
424
- installcheck-am:
425
-
426
- maintainer-clean: maintainer-clean-am
427
- -rm -rf ./$(DEPDIR)
428
- -rm -f Makefile
429
- maintainer-clean-am: distclean-am maintainer-clean-generic
430
-
431
- mostlyclean: mostlyclean-am
432
-
433
- mostlyclean-am: mostlyclean-compile mostlyclean-generic \
434
- mostlyclean-libtool
435
-
436
- pdf: pdf-am
437
-
438
- pdf-am:
439
-
440
- ps: ps-am
441
-
442
- ps-am:
443
-
444
- uninstall-am: uninstall-binPROGRAMS uninstall-info-am
445
-
446
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
447
- clean-generic clean-libtool ctags distclean distclean-compile \
448
- distclean-generic distclean-libtool distclean-tags distdir dvi \
449
- dvi-am html html-am info info-am install install-am \
450
- install-binPROGRAMS install-data install-data-am install-exec \
451
- install-exec-am install-info install-info-am install-man \
452
- install-strip installcheck installcheck-am installdirs \
453
- maintainer-clean maintainer-clean-generic mostlyclean \
454
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
455
- pdf pdf-am ps ps-am tags uninstall uninstall-am \
456
- uninstall-binPROGRAMS uninstall-info-am
457
-
458
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
459
- # Otherwise a system limit (for SysV at least) may be exceeded.
460
- .NOEXPORT: