opener-opinion-detector-basic 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +30 -0
- data/bin/opinion-detector-basic +19 -0
- data/bin/opinion-detector-basic-server +10 -0
- data/config.ru +4 -0
- data/core/opinion_detector_basic_multi.py +499 -0
- data/core/packages/KafNafParser-1.3.tar.gz +0 -0
- data/core/packages/VUA_pylib-1.4.tar.gz +0 -0
- data/core/site-packages/pre_build/VUKafParserPy-1.0-py2.7.egg-info/PKG-INFO +10 -0
- data/core/site-packages/pre_build/VUKafParserPy-1.0-py2.7.egg-info/SOURCES.txt +7 -0
- data/core/site-packages/pre_build/VUKafParserPy-1.0-py2.7.egg-info/dependency_links.txt +1 -0
- data/core/site-packages/pre_build/VUKafParserPy-1.0-py2.7.egg-info/installed-files.txt +11 -0
- data/core/site-packages/pre_build/VUKafParserPy-1.0-py2.7.egg-info/top_level.txt +1 -0
- data/core/site-packages/pre_build/VUKafParserPy/KafDataObjectsMod.py +165 -0
- data/core/site-packages/pre_build/VUKafParserPy/KafDataObjectsMod.pyc +0 -0
- data/core/site-packages/pre_build/VUKafParserPy/KafParserMod.py +439 -0
- data/core/site-packages/pre_build/VUKafParserPy/KafParserMod.pyc +0 -0
- data/core/site-packages/pre_build/VUKafParserPy/__init__.py +7 -0
- data/core/site-packages/pre_build/VUKafParserPy/__init__.pyc +0 -0
- data/core/vendor/src/crfsuite/AUTHORS +1 -0
- data/core/vendor/src/crfsuite/COPYING +27 -0
- data/core/vendor/src/crfsuite/ChangeLog +103 -0
- data/core/vendor/src/crfsuite/INSTALL +236 -0
- data/core/vendor/src/crfsuite/Makefile.am +19 -0
- data/core/vendor/src/crfsuite/Makefile.in +783 -0
- data/core/vendor/src/crfsuite/README +183 -0
- data/core/vendor/src/crfsuite/aclocal.m4 +9018 -0
- data/core/vendor/src/crfsuite/autogen.sh +38 -0
- data/core/vendor/src/crfsuite/compile +143 -0
- data/core/vendor/src/crfsuite/config.guess +1502 -0
- data/core/vendor/src/crfsuite/config.h.in +198 -0
- data/core/vendor/src/crfsuite/config.sub +1714 -0
- data/core/vendor/src/crfsuite/configure +14273 -0
- data/core/vendor/src/crfsuite/configure.in +149 -0
- data/core/vendor/src/crfsuite/crfsuite.sln +42 -0
- data/core/vendor/src/crfsuite/depcomp +630 -0
- data/core/vendor/src/crfsuite/example/chunking.py +49 -0
- data/core/vendor/src/crfsuite/example/crfutils.py +179 -0
- data/core/vendor/src/crfsuite/example/ner.py +270 -0
- data/core/vendor/src/crfsuite/example/pos.py +78 -0
- data/core/vendor/src/crfsuite/example/template.py +88 -0
- data/core/vendor/src/crfsuite/frontend/Makefile.am +29 -0
- data/core/vendor/src/crfsuite/frontend/Makefile.in +640 -0
- data/core/vendor/src/crfsuite/frontend/dump.c +116 -0
- data/core/vendor/src/crfsuite/frontend/frontend.vcxproj +129 -0
- data/core/vendor/src/crfsuite/frontend/iwa.c +273 -0
- data/core/vendor/src/crfsuite/frontend/iwa.h +65 -0
- data/core/vendor/src/crfsuite/frontend/learn.c +439 -0
- data/core/vendor/src/crfsuite/frontend/main.c +137 -0
- data/core/vendor/src/crfsuite/frontend/option.c +93 -0
- data/core/vendor/src/crfsuite/frontend/option.h +86 -0
- data/core/vendor/src/crfsuite/frontend/readdata.h +38 -0
- data/core/vendor/src/crfsuite/frontend/reader.c +136 -0
- data/core/vendor/src/crfsuite/frontend/tag.c +427 -0
- data/core/vendor/src/crfsuite/genbinary.sh.in +15 -0
- data/core/vendor/src/crfsuite/include/Makefile.am +11 -0
- data/core/vendor/src/crfsuite/include/Makefile.in +461 -0
- data/core/vendor/src/crfsuite/include/crfsuite.h +1063 -0
- data/core/vendor/src/crfsuite/include/crfsuite.hpp +555 -0
- data/core/vendor/src/crfsuite/include/crfsuite_api.hpp +400 -0
- data/core/vendor/src/crfsuite/include/os.h +61 -0
- data/core/vendor/src/crfsuite/install-sh +520 -0
- data/core/vendor/src/crfsuite/lib/cqdb/COPYING +28 -0
- data/core/vendor/src/crfsuite/lib/cqdb/Makefile.am +21 -0
- data/core/vendor/src/crfsuite/lib/cqdb/Makefile.in +549 -0
- data/core/vendor/src/crfsuite/lib/cqdb/cqdb.vcxproj +86 -0
- data/core/vendor/src/crfsuite/lib/cqdb/include/cqdb.h +524 -0
- data/core/vendor/src/crfsuite/lib/cqdb/src/cqdb.c +587 -0
- data/core/vendor/src/crfsuite/lib/cqdb/src/lookup3.c +976 -0
- data/core/vendor/src/crfsuite/lib/crf/Makefile.am +46 -0
- data/core/vendor/src/crfsuite/lib/crf/Makefile.in +721 -0
- data/core/vendor/src/crfsuite/lib/crf/crf.vcxproj +216 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d.h +353 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d_context.c +705 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d_encode.c +943 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d_feature.c +352 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d_model.c +994 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crf1d_tag.c +550 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crfsuite.c +492 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crfsuite_internal.h +236 -0
- data/core/vendor/src/crfsuite/lib/crf/src/crfsuite_train.c +272 -0
- data/core/vendor/src/crfsuite/lib/crf/src/dataset.c +106 -0
- data/core/vendor/src/crfsuite/lib/crf/src/dictionary.c +118 -0
- data/core/vendor/src/crfsuite/lib/crf/src/holdout.c +80 -0
- data/core/vendor/src/crfsuite/lib/crf/src/logging.c +91 -0
- data/core/vendor/src/crfsuite/lib/crf/src/logging.h +48 -0
- data/core/vendor/src/crfsuite/lib/crf/src/params.c +335 -0
- data/core/vendor/src/crfsuite/lib/crf/src/params.h +80 -0
- data/core/vendor/src/crfsuite/lib/crf/src/quark.c +172 -0
- data/core/vendor/src/crfsuite/lib/crf/src/quark.h +46 -0
- data/core/vendor/src/crfsuite/lib/crf/src/rumavl.c +1107 -0
- data/core/vendor/src/crfsuite/lib/crf/src/rumavl.h +160 -0
- data/core/vendor/src/crfsuite/lib/crf/src/train_arow.c +408 -0
- data/core/vendor/src/crfsuite/lib/crf/src/train_averaged_perceptron.c +242 -0
- data/core/vendor/src/crfsuite/lib/crf/src/train_l2sgd.c +507 -0
- data/core/vendor/src/crfsuite/lib/crf/src/train_lbfgs.c +338 -0
- data/core/vendor/src/crfsuite/lib/crf/src/train_passive_aggressive.c +435 -0
- data/core/vendor/src/crfsuite/lib/crf/src/vecmath.h +341 -0
- data/core/vendor/src/crfsuite/ltmain.sh +8413 -0
- data/core/vendor/src/crfsuite/missing +376 -0
- data/core/vendor/src/crfsuite/swig/Makefile.am +13 -0
- data/core/vendor/src/crfsuite/swig/Makefile.in +365 -0
- data/core/vendor/src/crfsuite/swig/crfsuite.cpp +2 -0
- data/core/vendor/src/crfsuite/swig/export.i +32 -0
- data/core/vendor/src/crfsuite/swig/python/README +92 -0
- data/core/vendor/src/crfsuite/swig/python/crfsuite.py +329 -0
- data/core/vendor/src/crfsuite/swig/python/export_wrap.cpp +14355 -0
- data/core/vendor/src/crfsuite/swig/python/export_wrap.h +63 -0
- data/core/vendor/src/crfsuite/swig/python/prepare.sh +9 -0
- data/core/vendor/src/crfsuite/swig/python/sample_tag.py +52 -0
- data/core/vendor/src/crfsuite/swig/python/sample_train.py +68 -0
- data/core/vendor/src/crfsuite/swig/python/setup.py +44 -0
- data/core/vendor/src/crfsuite/win32/stdint.h +679 -0
- data/core/vendor/src/liblbfgs/AUTHORS +1 -0
- data/core/vendor/src/liblbfgs/COPYING +22 -0
- data/core/vendor/src/liblbfgs/ChangeLog +120 -0
- data/core/vendor/src/liblbfgs/INSTALL +231 -0
- data/core/vendor/src/liblbfgs/Makefile.am +10 -0
- data/core/vendor/src/liblbfgs/Makefile.in +638 -0
- data/core/vendor/src/liblbfgs/NEWS +0 -0
- data/core/vendor/src/liblbfgs/README +71 -0
- data/core/vendor/src/liblbfgs/aclocal.m4 +6985 -0
- data/core/vendor/src/liblbfgs/autogen.sh +38 -0
- data/core/vendor/src/liblbfgs/config.guess +1411 -0
- data/core/vendor/src/liblbfgs/config.h.in +64 -0
- data/core/vendor/src/liblbfgs/config.sub +1500 -0
- data/core/vendor/src/liblbfgs/configure +21146 -0
- data/core/vendor/src/liblbfgs/configure.in +107 -0
- data/core/vendor/src/liblbfgs/depcomp +522 -0
- data/core/vendor/src/liblbfgs/include/lbfgs.h +745 -0
- data/core/vendor/src/liblbfgs/install-sh +322 -0
- data/core/vendor/src/liblbfgs/lbfgs.sln +26 -0
- data/core/vendor/src/liblbfgs/lib/Makefile.am +24 -0
- data/core/vendor/src/liblbfgs/lib/Makefile.in +499 -0
- data/core/vendor/src/liblbfgs/lib/arithmetic_ansi.h +133 -0
- data/core/vendor/src/liblbfgs/lib/arithmetic_sse_double.h +294 -0
- data/core/vendor/src/liblbfgs/lib/arithmetic_sse_float.h +298 -0
- data/core/vendor/src/liblbfgs/lib/lbfgs.c +1371 -0
- data/core/vendor/src/liblbfgs/lib/lib.vcxproj +95 -0
- data/core/vendor/src/liblbfgs/ltmain.sh +6426 -0
- data/core/vendor/src/liblbfgs/missing +353 -0
- data/core/vendor/src/liblbfgs/sample/Makefile.am +15 -0
- data/core/vendor/src/liblbfgs/sample/Makefile.in +433 -0
- data/core/vendor/src/liblbfgs/sample/sample.c +81 -0
- data/core/vendor/src/liblbfgs/sample/sample.cpp +126 -0
- data/core/vendor/src/liblbfgs/sample/sample.vcxproj +105 -0
- data/core/vendor/src/svm_light/LICENSE.txt +59 -0
- data/core/vendor/src/svm_light/Makefile +105 -0
- data/core/vendor/src/svm_light/kernel.h +40 -0
- data/core/vendor/src/svm_light/svm_classify.c +197 -0
- data/core/vendor/src/svm_light/svm_common.c +985 -0
- data/core/vendor/src/svm_light/svm_common.h +301 -0
- data/core/vendor/src/svm_light/svm_hideo.c +1062 -0
- data/core/vendor/src/svm_light/svm_learn.c +4147 -0
- data/core/vendor/src/svm_light/svm_learn.h +169 -0
- data/core/vendor/src/svm_light/svm_learn_main.c +397 -0
- data/core/vendor/src/svm_light/svm_loqo.c +211 -0
- data/ext/hack/Rakefile +17 -0
- data/ext/hack/support.rb +88 -0
- data/lib/opener/opinion_detector_basic.rb +91 -0
- data/lib/opener/opinion_detector_basic/public/markdown.css +284 -0
- data/lib/opener/opinion_detector_basic/server.rb +16 -0
- data/lib/opener/opinion_detector_basic/version.rb +5 -0
- data/lib/opener/opinion_detector_basic/views/index.erb +97 -0
- data/lib/opener/opinion_detector_basic/views/result.erb +15 -0
- data/opener-opinion-detector-basic.gemspec +36 -0
- data/pre_build_requirements.txt +1 -0
- metadata +309 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
The BSD license.
|
2
|
+
|
3
|
+
Copyright (c) 2007, Naoaki Okazaki
|
4
|
+
All rights reserved.
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
8
|
+
* Redistributions of source code must retain the above copyright
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
10
|
+
* Redistributions in binary form must reproduce the above copyright
|
11
|
+
notice, this list of conditions and the following disclaimer in the
|
12
|
+
documentation and/or other materials provided with the distribution.
|
13
|
+
* Neither the name of the Northwestern University, University of Tokyo,
|
14
|
+
nor the names of its contributors may be used to endorse or promote
|
15
|
+
products derived from this software without specific prior written
|
16
|
+
permission.
|
17
|
+
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
19
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
20
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
22
|
+
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
23
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
24
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
25
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
26
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
27
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
28
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# $Id:$
|
2
|
+
|
3
|
+
lib_LTLIBRARIES = libcqdb.la
|
4
|
+
|
5
|
+
EXTRA_DIST = \
|
6
|
+
cqdb.vcxproj \
|
7
|
+
COPYING
|
8
|
+
|
9
|
+
libcqdb_la_SOURCES = \
|
10
|
+
src/lookup3.c \
|
11
|
+
include/cqdb.h \
|
12
|
+
src/cqdb.c
|
13
|
+
|
14
|
+
libcqdb_la_LDFLAGS = \
|
15
|
+
-no-undefined \
|
16
|
+
-release @VERSION@
|
17
|
+
|
18
|
+
libcqdb_la_CFLAGS = -I./include
|
19
|
+
|
20
|
+
AM_CFLAGS = @CFLAGS@
|
21
|
+
INCLUDES = @INCLUDES@
|
@@ -0,0 +1,549 @@
|
|
1
|
+
# Makefile.in generated by automake 1.11.1 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 Free Software Foundation,
|
6
|
+
# 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
|
+
# $Id:$
|
19
|
+
|
20
|
+
VPATH = @srcdir@
|
21
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
22
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
23
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
24
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
25
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
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 = lib/cqdb
|
40
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING
|
41
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
42
|
+
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
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 =
|
48
|
+
CONFIG_CLEAN_VPATH_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 = f=`echo $$p | sed -e 's|^.*/||'`;
|
55
|
+
am__install_max = 40
|
56
|
+
am__nobase_strip_setup = \
|
57
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
58
|
+
am__nobase_strip = \
|
59
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
60
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
61
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
62
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
63
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
64
|
+
if (++n[$$2] == $(am__install_max)) \
|
65
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
66
|
+
END { for (dir in files) print dir, files[dir] }'
|
67
|
+
am__base_list = \
|
68
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
69
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
70
|
+
am__installdirs = "$(DESTDIR)$(libdir)"
|
71
|
+
LTLIBRARIES = $(lib_LTLIBRARIES)
|
72
|
+
libcqdb_la_LIBADD =
|
73
|
+
am_libcqdb_la_OBJECTS = libcqdb_la-lookup3.lo libcqdb_la-cqdb.lo
|
74
|
+
libcqdb_la_OBJECTS = $(am_libcqdb_la_OBJECTS)
|
75
|
+
libcqdb_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
76
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libcqdb_la_CFLAGS) \
|
77
|
+
$(CFLAGS) $(libcqdb_la_LDFLAGS) $(LDFLAGS) -o $@
|
78
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
79
|
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
80
|
+
am__depfiles_maybe = depfiles
|
81
|
+
am__mv = mv -f
|
82
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
83
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
84
|
+
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
85
|
+
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
86
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
87
|
+
CCLD = $(CC)
|
88
|
+
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
89
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
90
|
+
$(LDFLAGS) -o $@
|
91
|
+
SOURCES = $(libcqdb_la_SOURCES)
|
92
|
+
DIST_SOURCES = $(libcqdb_la_SOURCES)
|
93
|
+
ETAGS = etags
|
94
|
+
CTAGS = ctags
|
95
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
96
|
+
ACLOCAL = @ACLOCAL@
|
97
|
+
ALLOCA = @ALLOCA@
|
98
|
+
AMTAR = @AMTAR@
|
99
|
+
AR = @AR@
|
100
|
+
AUTOCONF = @AUTOCONF@
|
101
|
+
AUTOHEADER = @AUTOHEADER@
|
102
|
+
AUTOMAKE = @AUTOMAKE@
|
103
|
+
AWK = @AWK@
|
104
|
+
CC = @CC@
|
105
|
+
CCDEPMODE = @CCDEPMODE@
|
106
|
+
CFLAGS = @CFLAGS@
|
107
|
+
CPP = @CPP@
|
108
|
+
CPPFLAGS = @CPPFLAGS@
|
109
|
+
CYGPATH_W = @CYGPATH_W@
|
110
|
+
DEFS = @DEFS@
|
111
|
+
DEPDIR = @DEPDIR@
|
112
|
+
DSYMUTIL = @DSYMUTIL@
|
113
|
+
DUMPBIN = @DUMPBIN@
|
114
|
+
ECHO_C = @ECHO_C@
|
115
|
+
ECHO_N = @ECHO_N@
|
116
|
+
ECHO_T = @ECHO_T@
|
117
|
+
EGREP = @EGREP@
|
118
|
+
EXEEXT = @EXEEXT@
|
119
|
+
FGREP = @FGREP@
|
120
|
+
GREP = @GREP@
|
121
|
+
INCLUDES = @INCLUDES@
|
122
|
+
INSTALL = @INSTALL@
|
123
|
+
INSTALL_DATA = @INSTALL_DATA@
|
124
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
125
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
126
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
127
|
+
LD = @LD@
|
128
|
+
LDFLAGS = @LDFLAGS@
|
129
|
+
LIBOBJS = @LIBOBJS@
|
130
|
+
LIBS = @LIBS@
|
131
|
+
LIBTOOL = @LIBTOOL@
|
132
|
+
LIPO = @LIPO@
|
133
|
+
LN_S = @LN_S@
|
134
|
+
LTLIBOBJS = @LTLIBOBJS@
|
135
|
+
MAINT = @MAINT@
|
136
|
+
MAKEINFO = @MAKEINFO@
|
137
|
+
MKDIR_P = @MKDIR_P@
|
138
|
+
NM = @NM@
|
139
|
+
NMEDIT = @NMEDIT@
|
140
|
+
OBJDUMP = @OBJDUMP@
|
141
|
+
OBJEXT = @OBJEXT@
|
142
|
+
OTOOL = @OTOOL@
|
143
|
+
OTOOL64 = @OTOOL64@
|
144
|
+
PACKAGE = @PACKAGE@
|
145
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
146
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
147
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
148
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
149
|
+
PACKAGE_URL = @PACKAGE_URL@
|
150
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
151
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
152
|
+
RANLIB = @RANLIB@
|
153
|
+
SED = @SED@
|
154
|
+
SET_MAKE = @SET_MAKE@
|
155
|
+
SHELL = @SHELL@
|
156
|
+
STRIP = @STRIP@
|
157
|
+
U = @U@
|
158
|
+
VERSION = @VERSION@
|
159
|
+
abs_builddir = @abs_builddir@
|
160
|
+
abs_srcdir = @abs_srcdir@
|
161
|
+
abs_top_builddir = @abs_top_builddir@
|
162
|
+
abs_top_srcdir = @abs_top_srcdir@
|
163
|
+
ac_ct_CC = @ac_ct_CC@
|
164
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
165
|
+
am__include = @am__include@
|
166
|
+
am__leading_dot = @am__leading_dot@
|
167
|
+
am__quote = @am__quote@
|
168
|
+
am__tar = @am__tar@
|
169
|
+
am__untar = @am__untar@
|
170
|
+
bindir = @bindir@
|
171
|
+
build = @build@
|
172
|
+
build_alias = @build_alias@
|
173
|
+
build_cpu = @build_cpu@
|
174
|
+
build_os = @build_os@
|
175
|
+
build_vendor = @build_vendor@
|
176
|
+
builddir = @builddir@
|
177
|
+
datadir = @datadir@
|
178
|
+
datarootdir = @datarootdir@
|
179
|
+
docdir = @docdir@
|
180
|
+
dvidir = @dvidir@
|
181
|
+
exec_prefix = @exec_prefix@
|
182
|
+
host = @host@
|
183
|
+
host_alias = @host_alias@
|
184
|
+
host_cpu = @host_cpu@
|
185
|
+
host_os = @host_os@
|
186
|
+
host_vendor = @host_vendor@
|
187
|
+
htmldir = @htmldir@
|
188
|
+
includedir = @includedir@
|
189
|
+
infodir = @infodir@
|
190
|
+
install_sh = @install_sh@
|
191
|
+
libdir = @libdir@
|
192
|
+
libexecdir = @libexecdir@
|
193
|
+
localedir = @localedir@
|
194
|
+
localstatedir = @localstatedir@
|
195
|
+
lt_ECHO = @lt_ECHO@
|
196
|
+
mandir = @mandir@
|
197
|
+
mkdir_p = @mkdir_p@
|
198
|
+
oldincludedir = @oldincludedir@
|
199
|
+
pdfdir = @pdfdir@
|
200
|
+
prefix = @prefix@
|
201
|
+
program_transform_name = @program_transform_name@
|
202
|
+
psdir = @psdir@
|
203
|
+
sbindir = @sbindir@
|
204
|
+
sharedstatedir = @sharedstatedir@
|
205
|
+
srcdir = @srcdir@
|
206
|
+
sysconfdir = @sysconfdir@
|
207
|
+
target_alias = @target_alias@
|
208
|
+
top_build_prefix = @top_build_prefix@
|
209
|
+
top_builddir = @top_builddir@
|
210
|
+
top_srcdir = @top_srcdir@
|
211
|
+
lib_LTLIBRARIES = libcqdb.la
|
212
|
+
EXTRA_DIST = \
|
213
|
+
cqdb.vcxproj \
|
214
|
+
COPYING
|
215
|
+
|
216
|
+
libcqdb_la_SOURCES = \
|
217
|
+
src/lookup3.c \
|
218
|
+
include/cqdb.h \
|
219
|
+
src/cqdb.c
|
220
|
+
|
221
|
+
libcqdb_la_LDFLAGS = \
|
222
|
+
-no-undefined \
|
223
|
+
-release @VERSION@
|
224
|
+
|
225
|
+
libcqdb_la_CFLAGS = -I./include
|
226
|
+
AM_CFLAGS = @CFLAGS@
|
227
|
+
all: all-am
|
228
|
+
|
229
|
+
.SUFFIXES:
|
230
|
+
.SUFFIXES: .c .lo .o .obj
|
231
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
232
|
+
@for dep in $?; do \
|
233
|
+
case '$(am__configure_deps)' in \
|
234
|
+
*$$dep*) \
|
235
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
236
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
237
|
+
exit 1;; \
|
238
|
+
esac; \
|
239
|
+
done; \
|
240
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/cqdb/Makefile'; \
|
241
|
+
$(am__cd) $(top_srcdir) && \
|
242
|
+
$(AUTOMAKE) --gnu lib/cqdb/Makefile
|
243
|
+
.PRECIOUS: Makefile
|
244
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
245
|
+
@case '$?' in \
|
246
|
+
*config.status*) \
|
247
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
248
|
+
*) \
|
249
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
250
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
251
|
+
esac;
|
252
|
+
|
253
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
254
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
255
|
+
|
256
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
257
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
258
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
259
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
260
|
+
$(am__aclocal_m4_deps):
|
261
|
+
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
262
|
+
@$(NORMAL_INSTALL)
|
263
|
+
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
264
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
265
|
+
list2=; for p in $$list; do \
|
266
|
+
if test -f $$p; then \
|
267
|
+
list2="$$list2 $$p"; \
|
268
|
+
else :; fi; \
|
269
|
+
done; \
|
270
|
+
test -z "$$list2" || { \
|
271
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
272
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
273
|
+
}
|
274
|
+
|
275
|
+
uninstall-libLTLIBRARIES:
|
276
|
+
@$(NORMAL_UNINSTALL)
|
277
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
278
|
+
for p in $$list; do \
|
279
|
+
$(am__strip_dir) \
|
280
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
281
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
282
|
+
done
|
283
|
+
|
284
|
+
clean-libLTLIBRARIES:
|
285
|
+
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
286
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
287
|
+
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
288
|
+
test "$$dir" != "$$p" || dir=.; \
|
289
|
+
echo "rm -f \"$${dir}/so_locations\""; \
|
290
|
+
rm -f "$${dir}/so_locations"; \
|
291
|
+
done
|
292
|
+
libcqdb.la: $(libcqdb_la_OBJECTS) $(libcqdb_la_DEPENDENCIES)
|
293
|
+
$(libcqdb_la_LINK) -rpath $(libdir) $(libcqdb_la_OBJECTS) $(libcqdb_la_LIBADD) $(LIBS)
|
294
|
+
|
295
|
+
mostlyclean-compile:
|
296
|
+
-rm -f *.$(OBJEXT)
|
297
|
+
|
298
|
+
distclean-compile:
|
299
|
+
-rm -f *.tab.c
|
300
|
+
|
301
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcqdb_la-cqdb.Plo@am__quote@
|
302
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcqdb_la-lookup3.Plo@am__quote@
|
303
|
+
|
304
|
+
.c.o:
|
305
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
306
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
307
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
308
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
309
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
310
|
+
|
311
|
+
.c.obj:
|
312
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
313
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
314
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
315
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
316
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
317
|
+
|
318
|
+
.c.lo:
|
319
|
+
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
320
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
321
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
322
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
323
|
+
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
324
|
+
|
325
|
+
libcqdb_la-lookup3.lo: src/lookup3.c
|
326
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcqdb_la_CFLAGS) $(CFLAGS) -MT libcqdb_la-lookup3.lo -MD -MP -MF $(DEPDIR)/libcqdb_la-lookup3.Tpo -c -o libcqdb_la-lookup3.lo `test -f 'src/lookup3.c' || echo '$(srcdir)/'`src/lookup3.c
|
327
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcqdb_la-lookup3.Tpo $(DEPDIR)/libcqdb_la-lookup3.Plo
|
328
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/lookup3.c' object='libcqdb_la-lookup3.lo' libtool=yes @AMDEPBACKSLASH@
|
329
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
330
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcqdb_la_CFLAGS) $(CFLAGS) -c -o libcqdb_la-lookup3.lo `test -f 'src/lookup3.c' || echo '$(srcdir)/'`src/lookup3.c
|
331
|
+
|
332
|
+
libcqdb_la-cqdb.lo: src/cqdb.c
|
333
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcqdb_la_CFLAGS) $(CFLAGS) -MT libcqdb_la-cqdb.lo -MD -MP -MF $(DEPDIR)/libcqdb_la-cqdb.Tpo -c -o libcqdb_la-cqdb.lo `test -f 'src/cqdb.c' || echo '$(srcdir)/'`src/cqdb.c
|
334
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcqdb_la-cqdb.Tpo $(DEPDIR)/libcqdb_la-cqdb.Plo
|
335
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cqdb.c' object='libcqdb_la-cqdb.lo' libtool=yes @AMDEPBACKSLASH@
|
336
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
337
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcqdb_la_CFLAGS) $(CFLAGS) -c -o libcqdb_la-cqdb.lo `test -f 'src/cqdb.c' || echo '$(srcdir)/'`src/cqdb.c
|
338
|
+
|
339
|
+
mostlyclean-libtool:
|
340
|
+
-rm -f *.lo
|
341
|
+
|
342
|
+
clean-libtool:
|
343
|
+
-rm -rf .libs _libs
|
344
|
+
|
345
|
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
346
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
347
|
+
unique=`for i in $$list; do \
|
348
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
349
|
+
done | \
|
350
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
351
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
352
|
+
mkid -fID $$unique
|
353
|
+
tags: TAGS
|
354
|
+
|
355
|
+
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
356
|
+
$(TAGS_FILES) $(LISP)
|
357
|
+
set x; \
|
358
|
+
here=`pwd`; \
|
359
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
360
|
+
unique=`for i in $$list; do \
|
361
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
362
|
+
done | \
|
363
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
364
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
365
|
+
shift; \
|
366
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
367
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
368
|
+
if test $$# -gt 0; then \
|
369
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
370
|
+
"$$@" $$unique; \
|
371
|
+
else \
|
372
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
373
|
+
$$unique; \
|
374
|
+
fi; \
|
375
|
+
fi
|
376
|
+
ctags: CTAGS
|
377
|
+
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
378
|
+
$(TAGS_FILES) $(LISP)
|
379
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
380
|
+
unique=`for i in $$list; do \
|
381
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
382
|
+
done | \
|
383
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
384
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
385
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
386
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
387
|
+
$$unique
|
388
|
+
|
389
|
+
GTAGS:
|
390
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
391
|
+
&& $(am__cd) $(top_srcdir) \
|
392
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
393
|
+
|
394
|
+
distclean-tags:
|
395
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
396
|
+
|
397
|
+
distdir: $(DISTFILES)
|
398
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
399
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
400
|
+
list='$(DISTFILES)'; \
|
401
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
402
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
403
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
404
|
+
case $$dist_files in \
|
405
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
406
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
407
|
+
sort -u` ;; \
|
408
|
+
esac; \
|
409
|
+
for file in $$dist_files; do \
|
410
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
411
|
+
if test -d $$d/$$file; then \
|
412
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
413
|
+
if test -d "$(distdir)/$$file"; then \
|
414
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
415
|
+
fi; \
|
416
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
417
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
418
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
419
|
+
fi; \
|
420
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
421
|
+
else \
|
422
|
+
test -f "$(distdir)/$$file" \
|
423
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
424
|
+
|| exit 1; \
|
425
|
+
fi; \
|
426
|
+
done
|
427
|
+
check-am: all-am
|
428
|
+
check: check-am
|
429
|
+
all-am: Makefile $(LTLIBRARIES)
|
430
|
+
installdirs:
|
431
|
+
for dir in "$(DESTDIR)$(libdir)"; do \
|
432
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
433
|
+
done
|
434
|
+
install: install-am
|
435
|
+
install-exec: install-exec-am
|
436
|
+
install-data: install-data-am
|
437
|
+
uninstall: uninstall-am
|
438
|
+
|
439
|
+
install-am: all-am
|
440
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
441
|
+
|
442
|
+
installcheck: installcheck-am
|
443
|
+
install-strip:
|
444
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
445
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
446
|
+
`test -z '$(STRIP)' || \
|
447
|
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
448
|
+
mostlyclean-generic:
|
449
|
+
|
450
|
+
clean-generic:
|
451
|
+
|
452
|
+
distclean-generic:
|
453
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
454
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
455
|
+
|
456
|
+
maintainer-clean-generic:
|
457
|
+
@echo "This command is intended for maintainers to use"
|
458
|
+
@echo "it deletes files that may require special tools to rebuild."
|
459
|
+
clean: clean-am
|
460
|
+
|
461
|
+
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
462
|
+
mostlyclean-am
|
463
|
+
|
464
|
+
distclean: distclean-am
|
465
|
+
-rm -rf ./$(DEPDIR)
|
466
|
+
-rm -f Makefile
|
467
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
468
|
+
distclean-tags
|
469
|
+
|
470
|
+
dvi: dvi-am
|
471
|
+
|
472
|
+
dvi-am:
|
473
|
+
|
474
|
+
html: html-am
|
475
|
+
|
476
|
+
html-am:
|
477
|
+
|
478
|
+
info: info-am
|
479
|
+
|
480
|
+
info-am:
|
481
|
+
|
482
|
+
install-data-am:
|
483
|
+
|
484
|
+
install-dvi: install-dvi-am
|
485
|
+
|
486
|
+
install-dvi-am:
|
487
|
+
|
488
|
+
install-exec-am: install-libLTLIBRARIES
|
489
|
+
|
490
|
+
install-html: install-html-am
|
491
|
+
|
492
|
+
install-html-am:
|
493
|
+
|
494
|
+
install-info: install-info-am
|
495
|
+
|
496
|
+
install-info-am:
|
497
|
+
|
498
|
+
install-man:
|
499
|
+
|
500
|
+
install-pdf: install-pdf-am
|
501
|
+
|
502
|
+
install-pdf-am:
|
503
|
+
|
504
|
+
install-ps: install-ps-am
|
505
|
+
|
506
|
+
install-ps-am:
|
507
|
+
|
508
|
+
installcheck-am:
|
509
|
+
|
510
|
+
maintainer-clean: maintainer-clean-am
|
511
|
+
-rm -rf ./$(DEPDIR)
|
512
|
+
-rm -f Makefile
|
513
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
514
|
+
|
515
|
+
mostlyclean: mostlyclean-am
|
516
|
+
|
517
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
518
|
+
mostlyclean-libtool
|
519
|
+
|
520
|
+
pdf: pdf-am
|
521
|
+
|
522
|
+
pdf-am:
|
523
|
+
|
524
|
+
ps: ps-am
|
525
|
+
|
526
|
+
ps-am:
|
527
|
+
|
528
|
+
uninstall-am: uninstall-libLTLIBRARIES
|
529
|
+
|
530
|
+
.MAKE: install-am install-strip
|
531
|
+
|
532
|
+
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
533
|
+
clean-libLTLIBRARIES clean-libtool ctags distclean \
|
534
|
+
distclean-compile distclean-generic distclean-libtool \
|
535
|
+
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
536
|
+
install install-am install-data install-data-am install-dvi \
|
537
|
+
install-dvi-am install-exec install-exec-am install-html \
|
538
|
+
install-html-am install-info install-info-am \
|
539
|
+
install-libLTLIBRARIES install-man install-pdf install-pdf-am \
|
540
|
+
install-ps install-ps-am install-strip installcheck \
|
541
|
+
installcheck-am installdirs maintainer-clean \
|
542
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
543
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
544
|
+
tags uninstall uninstall-am uninstall-libLTLIBRARIES
|
545
|
+
|
546
|
+
|
547
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
548
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
549
|
+
.NOEXPORT:
|