opener-opinion-detector-base 2.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 +101 -0
- data/bin/opinion-detector-base +19 -0
- data/core/annotation.cfg.erb +9 -0
- data/core/packages/KafNafParser-1.4.tar.gz +0 -0
- data/core/packages/VUA_pylib-1.5.tar.gz +0 -0
- data/core/python-scripts/LICENSE +339 -0
- data/core/python-scripts/README.md +226 -0
- data/core/python-scripts/classify_kaf_naf_file.py +499 -0
- data/core/python-scripts/cross_validation.py +634 -0
- data/core/python-scripts/generate_folds.py +134 -0
- data/core/python-scripts/models.cfg +10 -0
- data/core/python-scripts/my_templates/README +33 -0
- data/core/python-scripts/my_templates/templates_exp.only0.txt +6 -0
- data/core/python-scripts/my_templates/templates_exp.pol0.txt +10 -0
- data/core/python-scripts/my_templates/templates_exp.red.txt +7 -0
- data/core/python-scripts/my_templates/templates_exp.txt +10 -0
- data/core/python-scripts/my_templates/templates_holder.only0.txt +11 -0
- data/core/python-scripts/my_templates/templates_holder.red.txt +9 -0
- data/core/python-scripts/my_templates/templates_holder.txt +10 -0
- data/core/python-scripts/my_templates/templates_target.only0.txt +11 -0
- data/core/python-scripts/my_templates/templates_target.red.txt +9 -0
- data/core/python-scripts/my_templates/templates_target.txt +10 -0
- data/core/python-scripts/run_all_experiments.sh +49 -0
- data/core/python-scripts/run_basic.py +20 -0
- data/core/python-scripts/run_experiment.sh +42 -0
- data/core/python-scripts/scripts/__init__.py +1 -0
- data/core/python-scripts/scripts/config_manager.py +314 -0
- data/core/python-scripts/scripts/crfutils.py +215 -0
- data/core/python-scripts/scripts/extract_feats_relations.py +295 -0
- data/core/python-scripts/scripts/extract_features.py +376 -0
- data/core/python-scripts/scripts/feats_to_crf.exp.py +105 -0
- data/core/python-scripts/scripts/lexicons.py +44 -0
- data/core/python-scripts/scripts/link_entities_distance.py +77 -0
- data/core/python-scripts/scripts/relation_classifier.py +250 -0
- data/core/python-scripts/train.py +566 -0
- data/core/site-packages/pre_build/KafNafParser-1.4-py2.7.egg-info/PKG-INFO +10 -0
- data/core/site-packages/pre_build/KafNafParser-1.4-py2.7.egg-info/SOURCES.txt +22 -0
- data/core/site-packages/pre_build/KafNafParser-1.4-py2.7.egg-info/dependency_links.txt +1 -0
- data/core/site-packages/pre_build/KafNafParser-1.4-py2.7.egg-info/installed-files.txt +47 -0
- data/core/site-packages/pre_build/KafNafParser-1.4-py2.7.egg-info/top_level.txt +1 -0
- data/core/site-packages/pre_build/KafNafParser/KafNafParserMod.py +390 -0
- data/core/site-packages/pre_build/KafNafParser/KafNafParserMod.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/__init__.py +14 -0
- data/core/site-packages/pre_build/KafNafParser/__init__.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/constituency_data.py +125 -0
- data/core/site-packages/pre_build/KafNafParser/constituency_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/coreference_data.py +52 -0
- data/core/site-packages/pre_build/KafNafParser/coreference_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/dependency_data.py +78 -0
- data/core/site-packages/pre_build/KafNafParser/dependency_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/entity_data.py +59 -0
- data/core/site-packages/pre_build/KafNafParser/entity_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/external_references_data.py +41 -0
- data/core/site-packages/pre_build/KafNafParser/external_references_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/__init__.py +2 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/__init__.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/constituency.py +205 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/constituency.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/dependency.py +309 -0
- data/core/site-packages/pre_build/KafNafParser/feature_extractor/dependency.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/features_data.py +131 -0
- data/core/site-packages/pre_build/KafNafParser/features_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/header_data.py +127 -0
- data/core/site-packages/pre_build/KafNafParser/header_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/opinion_data.py +211 -0
- data/core/site-packages/pre_build/KafNafParser/opinion_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/references_data.py +23 -0
- data/core/site-packages/pre_build/KafNafParser/references_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/span_data.py +63 -0
- data/core/site-packages/pre_build/KafNafParser/span_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/term_data.py +111 -0
- data/core/site-packages/pre_build/KafNafParser/term_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/term_sentiment_data.py +42 -0
- data/core/site-packages/pre_build/KafNafParser/term_sentiment_data.pyc +0 -0
- data/core/site-packages/pre_build/KafNafParser/text_data.py +99 -0
- data/core/site-packages/pre_build/KafNafParser/text_data.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib-1.5-py2.7.egg-info/PKG-INFO +10 -0
- data/core/site-packages/pre_build/VUA_pylib-1.5-py2.7.egg-info/SOURCES.txt +14 -0
- data/core/site-packages/pre_build/VUA_pylib-1.5-py2.7.egg-info/dependency_links.txt +1 -0
- data/core/site-packages/pre_build/VUA_pylib-1.5-py2.7.egg-info/installed-files.txt +23 -0
- data/core/site-packages/pre_build/VUA_pylib-1.5-py2.7.egg-info/top_level.txt +1 -0
- data/core/site-packages/pre_build/VUA_pylib/__init__.py +1 -0
- data/core/site-packages/pre_build/VUA_pylib/__init__.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/common/__init__.py +1 -0
- data/core/site-packages/pre_build/VUA_pylib/common/__init__.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/common/common.py +28 -0
- data/core/site-packages/pre_build/VUA_pylib/common/common.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/corpus_reader/__init__.py +1 -0
- data/core/site-packages/pre_build/VUA_pylib/corpus_reader/__init__.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/corpus_reader/google_web_nl.py +156 -0
- data/core/site-packages/pre_build/VUA_pylib/corpus_reader/google_web_nl.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/io_utils/__init__.py +1 -0
- data/core/site-packages/pre_build/VUA_pylib/io_utils/__init__.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/io_utils/feature_file.py +121 -0
- data/core/site-packages/pre_build/VUA_pylib/io_utils/feature_file.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/lexicon/__init__.py +1 -0
- data/core/site-packages/pre_build/VUA_pylib/lexicon/__init__.pyc +0 -0
- data/core/site-packages/pre_build/VUA_pylib/lexicon/lexicon.py +72 -0
- data/core/site-packages/pre_build/VUA_pylib/lexicon/lexicon.pyc +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_detectors/base.rb +112 -0
- data/lib/opener/opinion_detectors/base/version.rb +7 -0
- data/lib/opener/opinion_detectors/configuration_creator.rb +86 -0
- data/lib/opener/opinion_detectors/de.rb +7 -0
- data/lib/opener/opinion_detectors/en.rb +7 -0
- data/lib/opener/opinion_detectors/it.rb +7 -0
- data/lib/opener/opinion_detectors/nl.rb +6 -0
- data/opener-opinion-detector-base.gemspec +35 -0
- data/pre_build_requirements.txt +3 -0
- metadata +374 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
# $Id:$
|
2
|
+
|
3
|
+
lib_LTLIBRARIES = libcrfsuite.la
|
4
|
+
|
5
|
+
EXTRA_DIST = \
|
6
|
+
crf.vcxproj
|
7
|
+
|
8
|
+
libcrfsuite_la_SOURCES = \
|
9
|
+
src/dictionary.c \
|
10
|
+
src/logging.c \
|
11
|
+
src/logging.h \
|
12
|
+
src/params.c \
|
13
|
+
src/params.h \
|
14
|
+
src/quark.c \
|
15
|
+
src/quark.h \
|
16
|
+
src/rumavl.c \
|
17
|
+
src/rumavl.h \
|
18
|
+
src/vecmath.h \
|
19
|
+
src/crfsuite_internal.h \
|
20
|
+
src/dataset.c \
|
21
|
+
src/holdout.c \
|
22
|
+
src/train_arow.c \
|
23
|
+
src/train_averaged_perceptron.c \
|
24
|
+
src/train_l2sgd.c \
|
25
|
+
src/train_lbfgs.c \
|
26
|
+
src/train_passive_aggressive.c \
|
27
|
+
src/crf1d.h \
|
28
|
+
src/crf1d_context.c \
|
29
|
+
src/crf1d_model.c \
|
30
|
+
src/crf1d_feature.c \
|
31
|
+
src/crf1d_encode.c \
|
32
|
+
src/crf1d_tag.c \
|
33
|
+
src/crfsuite_train.c \
|
34
|
+
src/crfsuite.c
|
35
|
+
|
36
|
+
libcrfsuite_la_CFLAGS = -I$(top_builddir)/lib/cqdb/include
|
37
|
+
|
38
|
+
libcrfsuite_la_LDFLAGS = \
|
39
|
+
-no-undefined \
|
40
|
+
-release @VERSION@
|
41
|
+
|
42
|
+
libcrfsuite_la_LIBADD = \
|
43
|
+
$(top_builddir)/lib/cqdb/libcqdb.la
|
44
|
+
|
45
|
+
AM_CFLAGS = @CFLAGS@
|
46
|
+
INCLUDES = @INCLUDES@
|
@@ -0,0 +1,721 @@
|
|
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/crf
|
40
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
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
|
+
libcrfsuite_la_DEPENDENCIES = $(top_builddir)/lib/cqdb/libcqdb.la
|
73
|
+
am_libcrfsuite_la_OBJECTS = libcrfsuite_la-dictionary.lo \
|
74
|
+
libcrfsuite_la-logging.lo libcrfsuite_la-params.lo \
|
75
|
+
libcrfsuite_la-quark.lo libcrfsuite_la-rumavl.lo \
|
76
|
+
libcrfsuite_la-dataset.lo libcrfsuite_la-holdout.lo \
|
77
|
+
libcrfsuite_la-train_arow.lo \
|
78
|
+
libcrfsuite_la-train_averaged_perceptron.lo \
|
79
|
+
libcrfsuite_la-train_l2sgd.lo libcrfsuite_la-train_lbfgs.lo \
|
80
|
+
libcrfsuite_la-train_passive_aggressive.lo \
|
81
|
+
libcrfsuite_la-crf1d_context.lo libcrfsuite_la-crf1d_model.lo \
|
82
|
+
libcrfsuite_la-crf1d_feature.lo libcrfsuite_la-crf1d_encode.lo \
|
83
|
+
libcrfsuite_la-crf1d_tag.lo libcrfsuite_la-crfsuite_train.lo \
|
84
|
+
libcrfsuite_la-crfsuite.lo
|
85
|
+
libcrfsuite_la_OBJECTS = $(am_libcrfsuite_la_OBJECTS)
|
86
|
+
libcrfsuite_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
87
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libcrfsuite_la_CFLAGS) \
|
88
|
+
$(CFLAGS) $(libcrfsuite_la_LDFLAGS) $(LDFLAGS) -o $@
|
89
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
90
|
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
91
|
+
am__depfiles_maybe = depfiles
|
92
|
+
am__mv = mv -f
|
93
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
94
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
95
|
+
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
96
|
+
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
97
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
98
|
+
CCLD = $(CC)
|
99
|
+
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
100
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
101
|
+
$(LDFLAGS) -o $@
|
102
|
+
SOURCES = $(libcrfsuite_la_SOURCES)
|
103
|
+
DIST_SOURCES = $(libcrfsuite_la_SOURCES)
|
104
|
+
ETAGS = etags
|
105
|
+
CTAGS = ctags
|
106
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
107
|
+
ACLOCAL = @ACLOCAL@
|
108
|
+
ALLOCA = @ALLOCA@
|
109
|
+
AMTAR = @AMTAR@
|
110
|
+
AR = @AR@
|
111
|
+
AUTOCONF = @AUTOCONF@
|
112
|
+
AUTOHEADER = @AUTOHEADER@
|
113
|
+
AUTOMAKE = @AUTOMAKE@
|
114
|
+
AWK = @AWK@
|
115
|
+
CC = @CC@
|
116
|
+
CCDEPMODE = @CCDEPMODE@
|
117
|
+
CFLAGS = @CFLAGS@
|
118
|
+
CPP = @CPP@
|
119
|
+
CPPFLAGS = @CPPFLAGS@
|
120
|
+
CYGPATH_W = @CYGPATH_W@
|
121
|
+
DEFS = @DEFS@
|
122
|
+
DEPDIR = @DEPDIR@
|
123
|
+
DSYMUTIL = @DSYMUTIL@
|
124
|
+
DUMPBIN = @DUMPBIN@
|
125
|
+
ECHO_C = @ECHO_C@
|
126
|
+
ECHO_N = @ECHO_N@
|
127
|
+
ECHO_T = @ECHO_T@
|
128
|
+
EGREP = @EGREP@
|
129
|
+
EXEEXT = @EXEEXT@
|
130
|
+
FGREP = @FGREP@
|
131
|
+
GREP = @GREP@
|
132
|
+
INCLUDES = @INCLUDES@
|
133
|
+
INSTALL = @INSTALL@
|
134
|
+
INSTALL_DATA = @INSTALL_DATA@
|
135
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
136
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
137
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
138
|
+
LD = @LD@
|
139
|
+
LDFLAGS = @LDFLAGS@
|
140
|
+
LIBOBJS = @LIBOBJS@
|
141
|
+
LIBS = @LIBS@
|
142
|
+
LIBTOOL = @LIBTOOL@
|
143
|
+
LIPO = @LIPO@
|
144
|
+
LN_S = @LN_S@
|
145
|
+
LTLIBOBJS = @LTLIBOBJS@
|
146
|
+
MAINT = @MAINT@
|
147
|
+
MAKEINFO = @MAKEINFO@
|
148
|
+
MKDIR_P = @MKDIR_P@
|
149
|
+
NM = @NM@
|
150
|
+
NMEDIT = @NMEDIT@
|
151
|
+
OBJDUMP = @OBJDUMP@
|
152
|
+
OBJEXT = @OBJEXT@
|
153
|
+
OTOOL = @OTOOL@
|
154
|
+
OTOOL64 = @OTOOL64@
|
155
|
+
PACKAGE = @PACKAGE@
|
156
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
157
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
158
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
159
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
160
|
+
PACKAGE_URL = @PACKAGE_URL@
|
161
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
162
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
163
|
+
RANLIB = @RANLIB@
|
164
|
+
SED = @SED@
|
165
|
+
SET_MAKE = @SET_MAKE@
|
166
|
+
SHELL = @SHELL@
|
167
|
+
STRIP = @STRIP@
|
168
|
+
U = @U@
|
169
|
+
VERSION = @VERSION@
|
170
|
+
abs_builddir = @abs_builddir@
|
171
|
+
abs_srcdir = @abs_srcdir@
|
172
|
+
abs_top_builddir = @abs_top_builddir@
|
173
|
+
abs_top_srcdir = @abs_top_srcdir@
|
174
|
+
ac_ct_CC = @ac_ct_CC@
|
175
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
176
|
+
am__include = @am__include@
|
177
|
+
am__leading_dot = @am__leading_dot@
|
178
|
+
am__quote = @am__quote@
|
179
|
+
am__tar = @am__tar@
|
180
|
+
am__untar = @am__untar@
|
181
|
+
bindir = @bindir@
|
182
|
+
build = @build@
|
183
|
+
build_alias = @build_alias@
|
184
|
+
build_cpu = @build_cpu@
|
185
|
+
build_os = @build_os@
|
186
|
+
build_vendor = @build_vendor@
|
187
|
+
builddir = @builddir@
|
188
|
+
datadir = @datadir@
|
189
|
+
datarootdir = @datarootdir@
|
190
|
+
docdir = @docdir@
|
191
|
+
dvidir = @dvidir@
|
192
|
+
exec_prefix = @exec_prefix@
|
193
|
+
host = @host@
|
194
|
+
host_alias = @host_alias@
|
195
|
+
host_cpu = @host_cpu@
|
196
|
+
host_os = @host_os@
|
197
|
+
host_vendor = @host_vendor@
|
198
|
+
htmldir = @htmldir@
|
199
|
+
includedir = @includedir@
|
200
|
+
infodir = @infodir@
|
201
|
+
install_sh = @install_sh@
|
202
|
+
libdir = @libdir@
|
203
|
+
libexecdir = @libexecdir@
|
204
|
+
localedir = @localedir@
|
205
|
+
localstatedir = @localstatedir@
|
206
|
+
lt_ECHO = @lt_ECHO@
|
207
|
+
mandir = @mandir@
|
208
|
+
mkdir_p = @mkdir_p@
|
209
|
+
oldincludedir = @oldincludedir@
|
210
|
+
pdfdir = @pdfdir@
|
211
|
+
prefix = @prefix@
|
212
|
+
program_transform_name = @program_transform_name@
|
213
|
+
psdir = @psdir@
|
214
|
+
sbindir = @sbindir@
|
215
|
+
sharedstatedir = @sharedstatedir@
|
216
|
+
srcdir = @srcdir@
|
217
|
+
sysconfdir = @sysconfdir@
|
218
|
+
target_alias = @target_alias@
|
219
|
+
top_build_prefix = @top_build_prefix@
|
220
|
+
top_builddir = @top_builddir@
|
221
|
+
top_srcdir = @top_srcdir@
|
222
|
+
lib_LTLIBRARIES = libcrfsuite.la
|
223
|
+
EXTRA_DIST = \
|
224
|
+
crf.vcxproj
|
225
|
+
|
226
|
+
libcrfsuite_la_SOURCES = \
|
227
|
+
src/dictionary.c \
|
228
|
+
src/logging.c \
|
229
|
+
src/logging.h \
|
230
|
+
src/params.c \
|
231
|
+
src/params.h \
|
232
|
+
src/quark.c \
|
233
|
+
src/quark.h \
|
234
|
+
src/rumavl.c \
|
235
|
+
src/rumavl.h \
|
236
|
+
src/vecmath.h \
|
237
|
+
src/crfsuite_internal.h \
|
238
|
+
src/dataset.c \
|
239
|
+
src/holdout.c \
|
240
|
+
src/train_arow.c \
|
241
|
+
src/train_averaged_perceptron.c \
|
242
|
+
src/train_l2sgd.c \
|
243
|
+
src/train_lbfgs.c \
|
244
|
+
src/train_passive_aggressive.c \
|
245
|
+
src/crf1d.h \
|
246
|
+
src/crf1d_context.c \
|
247
|
+
src/crf1d_model.c \
|
248
|
+
src/crf1d_feature.c \
|
249
|
+
src/crf1d_encode.c \
|
250
|
+
src/crf1d_tag.c \
|
251
|
+
src/crfsuite_train.c \
|
252
|
+
src/crfsuite.c
|
253
|
+
|
254
|
+
libcrfsuite_la_CFLAGS = -I$(top_builddir)/lib/cqdb/include
|
255
|
+
libcrfsuite_la_LDFLAGS = \
|
256
|
+
-no-undefined \
|
257
|
+
-release @VERSION@
|
258
|
+
|
259
|
+
libcrfsuite_la_LIBADD = \
|
260
|
+
$(top_builddir)/lib/cqdb/libcqdb.la
|
261
|
+
|
262
|
+
AM_CFLAGS = @CFLAGS@
|
263
|
+
all: all-am
|
264
|
+
|
265
|
+
.SUFFIXES:
|
266
|
+
.SUFFIXES: .c .lo .o .obj
|
267
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
268
|
+
@for dep in $?; do \
|
269
|
+
case '$(am__configure_deps)' in \
|
270
|
+
*$$dep*) \
|
271
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
272
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
273
|
+
exit 1;; \
|
274
|
+
esac; \
|
275
|
+
done; \
|
276
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/crf/Makefile'; \
|
277
|
+
$(am__cd) $(top_srcdir) && \
|
278
|
+
$(AUTOMAKE) --gnu lib/crf/Makefile
|
279
|
+
.PRECIOUS: Makefile
|
280
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
281
|
+
@case '$?' in \
|
282
|
+
*config.status*) \
|
283
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
284
|
+
*) \
|
285
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
286
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
287
|
+
esac;
|
288
|
+
|
289
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
290
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
291
|
+
|
292
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
293
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
294
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
295
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
296
|
+
$(am__aclocal_m4_deps):
|
297
|
+
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
298
|
+
@$(NORMAL_INSTALL)
|
299
|
+
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
300
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
301
|
+
list2=; for p in $$list; do \
|
302
|
+
if test -f $$p; then \
|
303
|
+
list2="$$list2 $$p"; \
|
304
|
+
else :; fi; \
|
305
|
+
done; \
|
306
|
+
test -z "$$list2" || { \
|
307
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
308
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
309
|
+
}
|
310
|
+
|
311
|
+
uninstall-libLTLIBRARIES:
|
312
|
+
@$(NORMAL_UNINSTALL)
|
313
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
314
|
+
for p in $$list; do \
|
315
|
+
$(am__strip_dir) \
|
316
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
317
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
318
|
+
done
|
319
|
+
|
320
|
+
clean-libLTLIBRARIES:
|
321
|
+
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
322
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
323
|
+
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
324
|
+
test "$$dir" != "$$p" || dir=.; \
|
325
|
+
echo "rm -f \"$${dir}/so_locations\""; \
|
326
|
+
rm -f "$${dir}/so_locations"; \
|
327
|
+
done
|
328
|
+
libcrfsuite.la: $(libcrfsuite_la_OBJECTS) $(libcrfsuite_la_DEPENDENCIES)
|
329
|
+
$(libcrfsuite_la_LINK) -rpath $(libdir) $(libcrfsuite_la_OBJECTS) $(libcrfsuite_la_LIBADD) $(LIBS)
|
330
|
+
|
331
|
+
mostlyclean-compile:
|
332
|
+
-rm -f *.$(OBJEXT)
|
333
|
+
|
334
|
+
distclean-compile:
|
335
|
+
-rm -f *.tab.c
|
336
|
+
|
337
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crf1d_context.Plo@am__quote@
|
338
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crf1d_encode.Plo@am__quote@
|
339
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crf1d_feature.Plo@am__quote@
|
340
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crf1d_model.Plo@am__quote@
|
341
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crf1d_tag.Plo@am__quote@
|
342
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crfsuite.Plo@am__quote@
|
343
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-crfsuite_train.Plo@am__quote@
|
344
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-dataset.Plo@am__quote@
|
345
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-dictionary.Plo@am__quote@
|
346
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-holdout.Plo@am__quote@
|
347
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-logging.Plo@am__quote@
|
348
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-params.Plo@am__quote@
|
349
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-quark.Plo@am__quote@
|
350
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-rumavl.Plo@am__quote@
|
351
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-train_arow.Plo@am__quote@
|
352
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-train_averaged_perceptron.Plo@am__quote@
|
353
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-train_l2sgd.Plo@am__quote@
|
354
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-train_lbfgs.Plo@am__quote@
|
355
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcrfsuite_la-train_passive_aggressive.Plo@am__quote@
|
356
|
+
|
357
|
+
.c.o:
|
358
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
359
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
360
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
361
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
362
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
363
|
+
|
364
|
+
.c.obj:
|
365
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
366
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
367
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
368
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
369
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
370
|
+
|
371
|
+
.c.lo:
|
372
|
+
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
373
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
374
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
375
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
376
|
+
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
377
|
+
|
378
|
+
libcrfsuite_la-dictionary.lo: src/dictionary.c
|
379
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-dictionary.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-dictionary.Tpo -c -o libcrfsuite_la-dictionary.lo `test -f 'src/dictionary.c' || echo '$(srcdir)/'`src/dictionary.c
|
380
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-dictionary.Tpo $(DEPDIR)/libcrfsuite_la-dictionary.Plo
|
381
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dictionary.c' object='libcrfsuite_la-dictionary.lo' libtool=yes @AMDEPBACKSLASH@
|
382
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
383
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-dictionary.lo `test -f 'src/dictionary.c' || echo '$(srcdir)/'`src/dictionary.c
|
384
|
+
|
385
|
+
libcrfsuite_la-logging.lo: src/logging.c
|
386
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-logging.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-logging.Tpo -c -o libcrfsuite_la-logging.lo `test -f 'src/logging.c' || echo '$(srcdir)/'`src/logging.c
|
387
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-logging.Tpo $(DEPDIR)/libcrfsuite_la-logging.Plo
|
388
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/logging.c' object='libcrfsuite_la-logging.lo' libtool=yes @AMDEPBACKSLASH@
|
389
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
390
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-logging.lo `test -f 'src/logging.c' || echo '$(srcdir)/'`src/logging.c
|
391
|
+
|
392
|
+
libcrfsuite_la-params.lo: src/params.c
|
393
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-params.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-params.Tpo -c -o libcrfsuite_la-params.lo `test -f 'src/params.c' || echo '$(srcdir)/'`src/params.c
|
394
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-params.Tpo $(DEPDIR)/libcrfsuite_la-params.Plo
|
395
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/params.c' object='libcrfsuite_la-params.lo' libtool=yes @AMDEPBACKSLASH@
|
396
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
397
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-params.lo `test -f 'src/params.c' || echo '$(srcdir)/'`src/params.c
|
398
|
+
|
399
|
+
libcrfsuite_la-quark.lo: src/quark.c
|
400
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-quark.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-quark.Tpo -c -o libcrfsuite_la-quark.lo `test -f 'src/quark.c' || echo '$(srcdir)/'`src/quark.c
|
401
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-quark.Tpo $(DEPDIR)/libcrfsuite_la-quark.Plo
|
402
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/quark.c' object='libcrfsuite_la-quark.lo' libtool=yes @AMDEPBACKSLASH@
|
403
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
404
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-quark.lo `test -f 'src/quark.c' || echo '$(srcdir)/'`src/quark.c
|
405
|
+
|
406
|
+
libcrfsuite_la-rumavl.lo: src/rumavl.c
|
407
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-rumavl.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-rumavl.Tpo -c -o libcrfsuite_la-rumavl.lo `test -f 'src/rumavl.c' || echo '$(srcdir)/'`src/rumavl.c
|
408
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-rumavl.Tpo $(DEPDIR)/libcrfsuite_la-rumavl.Plo
|
409
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/rumavl.c' object='libcrfsuite_la-rumavl.lo' libtool=yes @AMDEPBACKSLASH@
|
410
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
411
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-rumavl.lo `test -f 'src/rumavl.c' || echo '$(srcdir)/'`src/rumavl.c
|
412
|
+
|
413
|
+
libcrfsuite_la-dataset.lo: src/dataset.c
|
414
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-dataset.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-dataset.Tpo -c -o libcrfsuite_la-dataset.lo `test -f 'src/dataset.c' || echo '$(srcdir)/'`src/dataset.c
|
415
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-dataset.Tpo $(DEPDIR)/libcrfsuite_la-dataset.Plo
|
416
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dataset.c' object='libcrfsuite_la-dataset.lo' libtool=yes @AMDEPBACKSLASH@
|
417
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
418
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-dataset.lo `test -f 'src/dataset.c' || echo '$(srcdir)/'`src/dataset.c
|
419
|
+
|
420
|
+
libcrfsuite_la-holdout.lo: src/holdout.c
|
421
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-holdout.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-holdout.Tpo -c -o libcrfsuite_la-holdout.lo `test -f 'src/holdout.c' || echo '$(srcdir)/'`src/holdout.c
|
422
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-holdout.Tpo $(DEPDIR)/libcrfsuite_la-holdout.Plo
|
423
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/holdout.c' object='libcrfsuite_la-holdout.lo' libtool=yes @AMDEPBACKSLASH@
|
424
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
425
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-holdout.lo `test -f 'src/holdout.c' || echo '$(srcdir)/'`src/holdout.c
|
426
|
+
|
427
|
+
libcrfsuite_la-train_arow.lo: src/train_arow.c
|
428
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-train_arow.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-train_arow.Tpo -c -o libcrfsuite_la-train_arow.lo `test -f 'src/train_arow.c' || echo '$(srcdir)/'`src/train_arow.c
|
429
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-train_arow.Tpo $(DEPDIR)/libcrfsuite_la-train_arow.Plo
|
430
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/train_arow.c' object='libcrfsuite_la-train_arow.lo' libtool=yes @AMDEPBACKSLASH@
|
431
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
432
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-train_arow.lo `test -f 'src/train_arow.c' || echo '$(srcdir)/'`src/train_arow.c
|
433
|
+
|
434
|
+
libcrfsuite_la-train_averaged_perceptron.lo: src/train_averaged_perceptron.c
|
435
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-train_averaged_perceptron.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-train_averaged_perceptron.Tpo -c -o libcrfsuite_la-train_averaged_perceptron.lo `test -f 'src/train_averaged_perceptron.c' || echo '$(srcdir)/'`src/train_averaged_perceptron.c
|
436
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-train_averaged_perceptron.Tpo $(DEPDIR)/libcrfsuite_la-train_averaged_perceptron.Plo
|
437
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/train_averaged_perceptron.c' object='libcrfsuite_la-train_averaged_perceptron.lo' libtool=yes @AMDEPBACKSLASH@
|
438
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
439
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-train_averaged_perceptron.lo `test -f 'src/train_averaged_perceptron.c' || echo '$(srcdir)/'`src/train_averaged_perceptron.c
|
440
|
+
|
441
|
+
libcrfsuite_la-train_l2sgd.lo: src/train_l2sgd.c
|
442
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-train_l2sgd.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-train_l2sgd.Tpo -c -o libcrfsuite_la-train_l2sgd.lo `test -f 'src/train_l2sgd.c' || echo '$(srcdir)/'`src/train_l2sgd.c
|
443
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-train_l2sgd.Tpo $(DEPDIR)/libcrfsuite_la-train_l2sgd.Plo
|
444
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/train_l2sgd.c' object='libcrfsuite_la-train_l2sgd.lo' libtool=yes @AMDEPBACKSLASH@
|
445
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
446
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-train_l2sgd.lo `test -f 'src/train_l2sgd.c' || echo '$(srcdir)/'`src/train_l2sgd.c
|
447
|
+
|
448
|
+
libcrfsuite_la-train_lbfgs.lo: src/train_lbfgs.c
|
449
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-train_lbfgs.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-train_lbfgs.Tpo -c -o libcrfsuite_la-train_lbfgs.lo `test -f 'src/train_lbfgs.c' || echo '$(srcdir)/'`src/train_lbfgs.c
|
450
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-train_lbfgs.Tpo $(DEPDIR)/libcrfsuite_la-train_lbfgs.Plo
|
451
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/train_lbfgs.c' object='libcrfsuite_la-train_lbfgs.lo' libtool=yes @AMDEPBACKSLASH@
|
452
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
453
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-train_lbfgs.lo `test -f 'src/train_lbfgs.c' || echo '$(srcdir)/'`src/train_lbfgs.c
|
454
|
+
|
455
|
+
libcrfsuite_la-train_passive_aggressive.lo: src/train_passive_aggressive.c
|
456
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-train_passive_aggressive.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-train_passive_aggressive.Tpo -c -o libcrfsuite_la-train_passive_aggressive.lo `test -f 'src/train_passive_aggressive.c' || echo '$(srcdir)/'`src/train_passive_aggressive.c
|
457
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-train_passive_aggressive.Tpo $(DEPDIR)/libcrfsuite_la-train_passive_aggressive.Plo
|
458
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/train_passive_aggressive.c' object='libcrfsuite_la-train_passive_aggressive.lo' libtool=yes @AMDEPBACKSLASH@
|
459
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
460
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-train_passive_aggressive.lo `test -f 'src/train_passive_aggressive.c' || echo '$(srcdir)/'`src/train_passive_aggressive.c
|
461
|
+
|
462
|
+
libcrfsuite_la-crf1d_context.lo: src/crf1d_context.c
|
463
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crf1d_context.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crf1d_context.Tpo -c -o libcrfsuite_la-crf1d_context.lo `test -f 'src/crf1d_context.c' || echo '$(srcdir)/'`src/crf1d_context.c
|
464
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crf1d_context.Tpo $(DEPDIR)/libcrfsuite_la-crf1d_context.Plo
|
465
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crf1d_context.c' object='libcrfsuite_la-crf1d_context.lo' libtool=yes @AMDEPBACKSLASH@
|
466
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
467
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crf1d_context.lo `test -f 'src/crf1d_context.c' || echo '$(srcdir)/'`src/crf1d_context.c
|
468
|
+
|
469
|
+
libcrfsuite_la-crf1d_model.lo: src/crf1d_model.c
|
470
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crf1d_model.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crf1d_model.Tpo -c -o libcrfsuite_la-crf1d_model.lo `test -f 'src/crf1d_model.c' || echo '$(srcdir)/'`src/crf1d_model.c
|
471
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crf1d_model.Tpo $(DEPDIR)/libcrfsuite_la-crf1d_model.Plo
|
472
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crf1d_model.c' object='libcrfsuite_la-crf1d_model.lo' libtool=yes @AMDEPBACKSLASH@
|
473
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
474
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crf1d_model.lo `test -f 'src/crf1d_model.c' || echo '$(srcdir)/'`src/crf1d_model.c
|
475
|
+
|
476
|
+
libcrfsuite_la-crf1d_feature.lo: src/crf1d_feature.c
|
477
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crf1d_feature.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crf1d_feature.Tpo -c -o libcrfsuite_la-crf1d_feature.lo `test -f 'src/crf1d_feature.c' || echo '$(srcdir)/'`src/crf1d_feature.c
|
478
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crf1d_feature.Tpo $(DEPDIR)/libcrfsuite_la-crf1d_feature.Plo
|
479
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crf1d_feature.c' object='libcrfsuite_la-crf1d_feature.lo' libtool=yes @AMDEPBACKSLASH@
|
480
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
481
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crf1d_feature.lo `test -f 'src/crf1d_feature.c' || echo '$(srcdir)/'`src/crf1d_feature.c
|
482
|
+
|
483
|
+
libcrfsuite_la-crf1d_encode.lo: src/crf1d_encode.c
|
484
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crf1d_encode.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crf1d_encode.Tpo -c -o libcrfsuite_la-crf1d_encode.lo `test -f 'src/crf1d_encode.c' || echo '$(srcdir)/'`src/crf1d_encode.c
|
485
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crf1d_encode.Tpo $(DEPDIR)/libcrfsuite_la-crf1d_encode.Plo
|
486
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crf1d_encode.c' object='libcrfsuite_la-crf1d_encode.lo' libtool=yes @AMDEPBACKSLASH@
|
487
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
488
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crf1d_encode.lo `test -f 'src/crf1d_encode.c' || echo '$(srcdir)/'`src/crf1d_encode.c
|
489
|
+
|
490
|
+
libcrfsuite_la-crf1d_tag.lo: src/crf1d_tag.c
|
491
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crf1d_tag.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crf1d_tag.Tpo -c -o libcrfsuite_la-crf1d_tag.lo `test -f 'src/crf1d_tag.c' || echo '$(srcdir)/'`src/crf1d_tag.c
|
492
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crf1d_tag.Tpo $(DEPDIR)/libcrfsuite_la-crf1d_tag.Plo
|
493
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crf1d_tag.c' object='libcrfsuite_la-crf1d_tag.lo' libtool=yes @AMDEPBACKSLASH@
|
494
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
495
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crf1d_tag.lo `test -f 'src/crf1d_tag.c' || echo '$(srcdir)/'`src/crf1d_tag.c
|
496
|
+
|
497
|
+
libcrfsuite_la-crfsuite_train.lo: src/crfsuite_train.c
|
498
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crfsuite_train.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crfsuite_train.Tpo -c -o libcrfsuite_la-crfsuite_train.lo `test -f 'src/crfsuite_train.c' || echo '$(srcdir)/'`src/crfsuite_train.c
|
499
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crfsuite_train.Tpo $(DEPDIR)/libcrfsuite_la-crfsuite_train.Plo
|
500
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crfsuite_train.c' object='libcrfsuite_la-crfsuite_train.lo' libtool=yes @AMDEPBACKSLASH@
|
501
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
502
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crfsuite_train.lo `test -f 'src/crfsuite_train.c' || echo '$(srcdir)/'`src/crfsuite_train.c
|
503
|
+
|
504
|
+
libcrfsuite_la-crfsuite.lo: src/crfsuite.c
|
505
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -MT libcrfsuite_la-crfsuite.lo -MD -MP -MF $(DEPDIR)/libcrfsuite_la-crfsuite.Tpo -c -o libcrfsuite_la-crfsuite.lo `test -f 'src/crfsuite.c' || echo '$(srcdir)/'`src/crfsuite.c
|
506
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libcrfsuite_la-crfsuite.Tpo $(DEPDIR)/libcrfsuite_la-crfsuite.Plo
|
507
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crfsuite.c' object='libcrfsuite_la-crfsuite.lo' libtool=yes @AMDEPBACKSLASH@
|
508
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
509
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcrfsuite_la_CFLAGS) $(CFLAGS) -c -o libcrfsuite_la-crfsuite.lo `test -f 'src/crfsuite.c' || echo '$(srcdir)/'`src/crfsuite.c
|
510
|
+
|
511
|
+
mostlyclean-libtool:
|
512
|
+
-rm -f *.lo
|
513
|
+
|
514
|
+
clean-libtool:
|
515
|
+
-rm -rf .libs _libs
|
516
|
+
|
517
|
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
518
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
519
|
+
unique=`for i in $$list; do \
|
520
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
521
|
+
done | \
|
522
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
523
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
524
|
+
mkid -fID $$unique
|
525
|
+
tags: TAGS
|
526
|
+
|
527
|
+
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
528
|
+
$(TAGS_FILES) $(LISP)
|
529
|
+
set x; \
|
530
|
+
here=`pwd`; \
|
531
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
532
|
+
unique=`for i in $$list; do \
|
533
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
534
|
+
done | \
|
535
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
536
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
537
|
+
shift; \
|
538
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
539
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
540
|
+
if test $$# -gt 0; then \
|
541
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
542
|
+
"$$@" $$unique; \
|
543
|
+
else \
|
544
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
545
|
+
$$unique; \
|
546
|
+
fi; \
|
547
|
+
fi
|
548
|
+
ctags: CTAGS
|
549
|
+
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
550
|
+
$(TAGS_FILES) $(LISP)
|
551
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
552
|
+
unique=`for i in $$list; do \
|
553
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
554
|
+
done | \
|
555
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
556
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
557
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
558
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
559
|
+
$$unique
|
560
|
+
|
561
|
+
GTAGS:
|
562
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
563
|
+
&& $(am__cd) $(top_srcdir) \
|
564
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
565
|
+
|
566
|
+
distclean-tags:
|
567
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
568
|
+
|
569
|
+
distdir: $(DISTFILES)
|
570
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
571
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
572
|
+
list='$(DISTFILES)'; \
|
573
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
574
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
575
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
576
|
+
case $$dist_files in \
|
577
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
578
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
579
|
+
sort -u` ;; \
|
580
|
+
esac; \
|
581
|
+
for file in $$dist_files; do \
|
582
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
583
|
+
if test -d $$d/$$file; then \
|
584
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
585
|
+
if test -d "$(distdir)/$$file"; then \
|
586
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
587
|
+
fi; \
|
588
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
589
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
590
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
591
|
+
fi; \
|
592
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
593
|
+
else \
|
594
|
+
test -f "$(distdir)/$$file" \
|
595
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
596
|
+
|| exit 1; \
|
597
|
+
fi; \
|
598
|
+
done
|
599
|
+
check-am: all-am
|
600
|
+
check: check-am
|
601
|
+
all-am: Makefile $(LTLIBRARIES)
|
602
|
+
installdirs:
|
603
|
+
for dir in "$(DESTDIR)$(libdir)"; do \
|
604
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
605
|
+
done
|
606
|
+
install: install-am
|
607
|
+
install-exec: install-exec-am
|
608
|
+
install-data: install-data-am
|
609
|
+
uninstall: uninstall-am
|
610
|
+
|
611
|
+
install-am: all-am
|
612
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
613
|
+
|
614
|
+
installcheck: installcheck-am
|
615
|
+
install-strip:
|
616
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
617
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
618
|
+
`test -z '$(STRIP)' || \
|
619
|
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
620
|
+
mostlyclean-generic:
|
621
|
+
|
622
|
+
clean-generic:
|
623
|
+
|
624
|
+
distclean-generic:
|
625
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
626
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
627
|
+
|
628
|
+
maintainer-clean-generic:
|
629
|
+
@echo "This command is intended for maintainers to use"
|
630
|
+
@echo "it deletes files that may require special tools to rebuild."
|
631
|
+
clean: clean-am
|
632
|
+
|
633
|
+
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
634
|
+
mostlyclean-am
|
635
|
+
|
636
|
+
distclean: distclean-am
|
637
|
+
-rm -rf ./$(DEPDIR)
|
638
|
+
-rm -f Makefile
|
639
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
640
|
+
distclean-tags
|
641
|
+
|
642
|
+
dvi: dvi-am
|
643
|
+
|
644
|
+
dvi-am:
|
645
|
+
|
646
|
+
html: html-am
|
647
|
+
|
648
|
+
html-am:
|
649
|
+
|
650
|
+
info: info-am
|
651
|
+
|
652
|
+
info-am:
|
653
|
+
|
654
|
+
install-data-am:
|
655
|
+
|
656
|
+
install-dvi: install-dvi-am
|
657
|
+
|
658
|
+
install-dvi-am:
|
659
|
+
|
660
|
+
install-exec-am: install-libLTLIBRARIES
|
661
|
+
|
662
|
+
install-html: install-html-am
|
663
|
+
|
664
|
+
install-html-am:
|
665
|
+
|
666
|
+
install-info: install-info-am
|
667
|
+
|
668
|
+
install-info-am:
|
669
|
+
|
670
|
+
install-man:
|
671
|
+
|
672
|
+
install-pdf: install-pdf-am
|
673
|
+
|
674
|
+
install-pdf-am:
|
675
|
+
|
676
|
+
install-ps: install-ps-am
|
677
|
+
|
678
|
+
install-ps-am:
|
679
|
+
|
680
|
+
installcheck-am:
|
681
|
+
|
682
|
+
maintainer-clean: maintainer-clean-am
|
683
|
+
-rm -rf ./$(DEPDIR)
|
684
|
+
-rm -f Makefile
|
685
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
686
|
+
|
687
|
+
mostlyclean: mostlyclean-am
|
688
|
+
|
689
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
690
|
+
mostlyclean-libtool
|
691
|
+
|
692
|
+
pdf: pdf-am
|
693
|
+
|
694
|
+
pdf-am:
|
695
|
+
|
696
|
+
ps: ps-am
|
697
|
+
|
698
|
+
ps-am:
|
699
|
+
|
700
|
+
uninstall-am: uninstall-libLTLIBRARIES
|
701
|
+
|
702
|
+
.MAKE: install-am install-strip
|
703
|
+
|
704
|
+
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
705
|
+
clean-libLTLIBRARIES clean-libtool ctags distclean \
|
706
|
+
distclean-compile distclean-generic distclean-libtool \
|
707
|
+
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
708
|
+
install install-am install-data install-data-am install-dvi \
|
709
|
+
install-dvi-am install-exec install-exec-am install-html \
|
710
|
+
install-html-am install-info install-info-am \
|
711
|
+
install-libLTLIBRARIES install-man install-pdf install-pdf-am \
|
712
|
+
install-ps install-ps-am install-strip installcheck \
|
713
|
+
installcheck-am installdirs maintainer-clean \
|
714
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
715
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
716
|
+
tags uninstall uninstall-am uninstall-libLTLIBRARIES
|
717
|
+
|
718
|
+
|
719
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
720
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
721
|
+
.NOEXPORT:
|