-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
1846 lines (1672 loc) · 148 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Makefile.in generated by automake 1.9.6 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ..
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
LIBOBJDIR =
DIST_COMMON = $(analyzersh_HEADERS) $(configh_HEADERS) \
$(debugh_HEADERS) $(documenth_HEADERS) $(include_HEADERS) \
$(indexh_HEADERS) $(qph_HEADERS) $(searchh_HEADERS) \
$(srcdir)/CLucene/Makefile.am \
$(srcdir)/CLucene/analysis/Makefile.am \
$(srcdir)/CLucene/analysis/standard/Makefile.am \
$(srcdir)/CLucene/config/Makefile.am \
$(srcdir)/CLucene/debug/Makefile.am \
$(srcdir)/CLucene/document/Makefile.am \
$(srcdir)/CLucene/index/Makefile.am \
$(srcdir)/CLucene/queryParser/Makefile.am \
$(srcdir)/CLucene/search/Makefile.am \
$(srcdir)/CLucene/store/Makefile.am \
$(srcdir)/CLucene/util/Makefile.am $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(stdanh_HEADERS) $(stdh_HEADERS) \
$(storeh_HEADERS) $(utilh_HEADERS)
subdir = src
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_std.m4 \
$(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_have_wctype_h.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ac_define_integer_bits.m4 \
$(top_srcdir)/m4/acx_pthread.m4 \
$(top_srcdir)/m4/ax_config_feature.m4 \
$(top_srcdir)/m4/ax_prefix_config_h.m4 \
$(top_srcdir)/m4/dps_float_byte.m4 \
$(top_srcdir)/m4/dps_snprintf_oflow.m4 \
$(top_srcdir)/m4/dps_static_const_type.m4 \
$(top_srcdir)/m4/dps_swprintf_works.m4 \
$(top_srcdir)/m4/mdl_cxx_function_try_blocks.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h.tmp
CONFIG_CLEAN_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
am__installdirs = "$(DESTDIR)$(libdir)" \
"$(DESTDIR)$(clucene_configdir)" "$(DESTDIR)$(analyzershdir)" \
"$(DESTDIR)$(confighdir)" "$(DESTDIR)$(debughdir)" \
"$(DESTDIR)$(documenthdir)" "$(DESTDIR)$(includedir)" \
"$(DESTDIR)$(indexhdir)" "$(DESTDIR)$(qphdir)" \
"$(DESTDIR)$(searchhdir)" "$(DESTDIR)$(stdanhdir)" \
"$(DESTDIR)$(stdhdir)" "$(DESTDIR)$(storehdir)" \
"$(DESTDIR)$(utilhdir)"
libLTLIBRARIES_INSTALL = $(INSTALL)
LTLIBRARIES = $(lib_LTLIBRARIES)
libclucene_la_LIBADD =
am_libclucene_la_OBJECTS = StdHeader.lo gunichartables.lo \
repl_lltot.lo repl_tcscasecmp.lo repl_tcslwr.lo repl_tcstod.lo \
repl_tcstoll.lo repl_tprintf.lo threads.lo utf8.lo BitSet.lo \
dirent.lo Equators.lo FastCharStream.lo fileinputstream.lo \
MD5Digester.lo Misc.lo Reader.lo StringBuffer.lo \
StringIntern.lo ThreadLocal.lo FSDirectory.lo IndexInput.lo \
Lock.lo IndexOutput.lo MMapInput.lo RAMDirectory.lo \
TransactionalRAMDirectory.lo condition.lo error.lo \
memtracking.lo Analyzers.lo AnalysisHeader.lo \
StandardAnalyzer.lo StandardFilter.lo StandardTokenizer.lo \
DateField.lo Document.lo Field.lo CompoundFile.lo \
DocumentWriter.lo FieldInfos.lo FieldsReader.lo \
FieldsWriter.lo IndexModifier.lo IndexReader.lo IndexWriter.lo \
MultiReader.lo SegmentInfos.lo SegmentMergeInfo.lo \
SegmentMerger.lo SegmentMergeQueue.lo SegmentReader.lo \
SegmentTermDocs.lo SegmentTermEnum.lo SegmentTermPositions.lo \
SegmentTermVector.lo Term.lo TermInfo.lo TermInfosReader.lo \
TermInfosWriter.lo TermVectorReader.lo TermVectorWriter.lo \
Lexer.lo QueryParser.lo QueryParserBase.lo QueryToken.lo \
TokenList.lo MultiFieldQueryParser.lo BooleanQuery.lo \
BooleanScorer.lo DateFilter.lo CachingWrapperFilter.lo \
ChainedFilter.lo ConjunctionScorer.lo ExactPhraseScorer.lo \
Explanation.lo FieldCache.lo FieldCacheImpl.lo \
FieldSortedHitQueue.lo FieldDocSortedHitQueue.lo \
FilteredTermEnum.lo FuzzyQuery.lo Hits.lo HitQueue.lo \
IndexSearcher.lo MultiSearcher.lo MultiTermQuery.lo \
PhrasePositions.lo PhraseQuery.lo PhraseScorer.lo \
PrefixQuery.lo QueryFilter.lo RangeFilter.lo RangeQuery.lo \
SearchHeader.lo Similarity.lo SloppyPhraseScorer.lo Sort.lo \
TermQuery.lo TermScorer.lo WildcardQuery.lo \
WildcardTermEnum.lo
libclucene_la_OBJECTS = $(am_libclucene_la_OBJECTS)
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__depfiles_maybe = depfiles
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
SOURCES = $(libclucene_la_SOURCES)
DIST_SOURCES = $(libclucene_la_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-exec-recursive install-info-recursive \
install-recursive installcheck-recursive installdirs-recursive \
pdf-recursive ps-recursive uninstall-info-recursive \
uninstall-recursive
clucene_configDATA_INSTALL = $(INSTALL_DATA)
DATA = $(clucene_config_DATA)
analyzershHEADERS_INSTALL = $(INSTALL_HEADER)
confighHEADERS_INSTALL = $(INSTALL_HEADER)
debughHEADERS_INSTALL = $(INSTALL_HEADER)
documenthHEADERS_INSTALL = $(INSTALL_HEADER)
includeHEADERS_INSTALL = $(INSTALL_HEADER)
indexhHEADERS_INSTALL = $(INSTALL_HEADER)
qphHEADERS_INSTALL = $(INSTALL_HEADER)
searchhHEADERS_INSTALL = $(INSTALL_HEADER)
stdanhHEADERS_INSTALL = $(INSTALL_HEADER)
stdhHEADERS_INSTALL = $(INSTALL_HEADER)
storehHEADERS_INSTALL = $(INSTALL_HEADER)
utilhHEADERS_INSTALL = $(INSTALL_HEADER)
HEADERS = $(analyzersh_HEADERS) $(configh_HEADERS) $(debugh_HEADERS) \
$(documenth_HEADERS) $(include_HEADERS) $(indexh_HEADERS) \
$(qph_HEADERS) $(searchh_HEADERS) $(stdanh_HEADERS) \
$(stdh_HEADERS) $(storeh_HEADERS) $(utilh_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMDEP_FALSE = @AMDEP_FALSE@
AMDEP_TRUE = @AMDEP_TRUE@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLLIB_VERSION = @CLLIB_VERSION@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DOT = @DOT@
DOXYGEN = @DOXYGEN@
ECHO = @ECHO@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
GREP = @GREP@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
POW_LIB = @POW_LIB@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
acx_pthread_config = @acx_pthread_config@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
enable_dot = @enable_dot@
enable_doxygen = @enable_doxygen@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
AUTOMAKE_OPTIONS = 1.6
include_HEADERS = CLucene.h
lib_LTLIBRARIES = libclucene.la
libclucene_la_LDFLAGS = --version-info $(CLLIB_VERSION) --release $(PACKAGE_VERSION)
lsrcdir = $(top_srcdir)/src/CLucene
EXTRA_DIST = $(lsrcdir)/CLMonolithic.cpp \
$(lsrcdir)/CMakeLists.txt \
$(lsrcdir)/clucene-config.h.cmake
libclucene_la_SOURCES = $(lsrcdir)/StdHeader.cpp \
$(configdir)/gunichartables.cpp $(configdir)/repl_lltot.cpp \
$(configdir)/repl_tcscasecmp.cpp $(configdir)/repl_tcslwr.cpp \
$(configdir)/repl_tcstod.cpp $(configdir)/repl_tcstoll.cpp \
$(configdir)/repl_tprintf.cpp $(configdir)/threads.cpp \
$(configdir)/utf8.cpp $(utildir)/BitSet.cpp \
$(utildir)/dirent.cpp $(utildir)/Equators.cpp \
$(utildir)/FastCharStream.cpp $(utildir)/fileinputstream.cpp \
$(utildir)/MD5Digester.cpp $(utildir)/Misc.cpp \
$(utildir)/Reader.cpp $(utildir)/StringBuffer.cpp \
$(utildir)/StringIntern.cpp $(utildir)/ThreadLocal.cpp \
$(storedir)/FSDirectory.cpp $(storedir)/IndexInput.cpp \
$(storedir)/Lock.cpp $(storedir)/IndexOutput.cpp \
$(storedir)/MMapInput.cpp $(storedir)/RAMDirectory.cpp \
$(storedir)/TransactionalRAMDirectory.cpp \
$(debugdir)/condition.cpp $(debugdir)/error.cpp \
$(debugdir)/memtracking.cpp $(analyzersdir)/Analyzers.cpp \
$(analyzersdir)/AnalysisHeader.cpp \
$(stdandir)/StandardAnalyzer.cpp \
$(stdandir)/StandardFilter.cpp \
$(stdandir)/StandardTokenizer.cpp $(documentdir)/DateField.cpp \
$(documentdir)/Document.cpp $(documentdir)/Field.cpp \
$(indexdir)/CompoundFile.cpp $(indexdir)/DocumentWriter.cpp \
$(indexdir)/FieldInfos.cpp $(indexdir)/FieldsReader.cpp \
$(indexdir)/FieldsWriter.cpp $(indexdir)/IndexModifier.cpp \
$(indexdir)/IndexReader.cpp $(indexdir)/IndexWriter.cpp \
$(indexdir)/MultiReader.cpp $(indexdir)/SegmentInfos.cpp \
$(indexdir)/SegmentMergeInfo.cpp $(indexdir)/SegmentMerger.cpp \
$(indexdir)/SegmentMergeQueue.cpp \
$(indexdir)/SegmentReader.cpp $(indexdir)/SegmentTermDocs.cpp \
$(indexdir)/SegmentTermEnum.cpp \
$(indexdir)/SegmentTermPositions.cpp \
$(indexdir)/SegmentTermVector.cpp $(indexdir)/Term.cpp \
$(indexdir)/TermInfo.cpp $(indexdir)/TermInfosReader.cpp \
$(indexdir)/TermInfosWriter.cpp \
$(indexdir)/TermVectorReader.cpp \
$(indexdir)/TermVectorWriter.cpp $(qpdir)/Lexer.cpp \
$(qpdir)/QueryParser.cpp $(qpdir)/QueryParserBase.cpp \
$(qpdir)/QueryToken.cpp $(qpdir)/TokenList.cpp \
$(qpdir)/MultiFieldQueryParser.cpp \
$(searchdir)/BooleanQuery.cpp $(searchdir)/BooleanScorer.cpp \
$(searchdir)/DateFilter.cpp \
$(searchdir)/CachingWrapperFilter.cpp \
$(searchdir)/ChainedFilter.cpp \
$(searchdir)/ConjunctionScorer.cpp \
$(searchdir)/ExactPhraseScorer.cpp \
$(searchdir)/Explanation.cpp $(searchdir)/FieldCache.cpp \
$(searchdir)/FieldCacheImpl.cpp \
$(searchdir)/FieldSortedHitQueue.cpp \
$(searchdir)/FieldDocSortedHitQueue.cpp \
$(searchdir)/FilteredTermEnum.cpp $(searchdir)/FuzzyQuery.cpp \
$(searchdir)/Hits.cpp $(searchdir)/HitQueue.cpp \
$(searchdir)/IndexSearcher.cpp $(searchdir)/MultiSearcher.cpp \
$(searchdir)/MultiTermQuery.cpp \
$(searchdir)/PhrasePositions.cpp $(searchdir)/PhraseQuery.cpp \
$(searchdir)/PhraseScorer.cpp $(searchdir)/PrefixQuery.cpp \
$(searchdir)/QueryFilter.cpp $(searchdir)/RangeFilter.cpp \
$(searchdir)/RangeQuery.cpp $(searchdir)/SearchHeader.cpp \
$(searchdir)/Similarity.cpp \
$(searchdir)/SloppyPhraseScorer.cpp $(searchdir)/Sort.cpp \
$(searchdir)/TermQuery.cpp $(searchdir)/TermScorer.cpp \
$(searchdir)/WildcardQuery.cpp \
$(searchdir)/WildcardTermEnum.cpp
stdhdir = $(includedir)/CLucene
stdh_HEADERS = $(lsrcdir)/CLBackwards.h $(lsrcdir)/CLConfig.h \
$(lsrcdir)/LuceneThreads.h $(lsrcdir)/StdHeader.h
clucene_configdir = $(libdir)/CLucene
clucene_config_DATA = $(top_builddir)/src/CLucene/clucene-config.h
configdir = $(lsrcdir)/config
confighdir = $(includedir)/CLucene/config
configh_HEADERS = $(configdir)/*.h
utildir = $(lsrcdir)/util
utilhdir = $(includedir)/CLucene/util
utilh_HEADERS = $(utildir)/*.h
storedir = $(lsrcdir)/store
storehdir = $(includedir)/CLucene/store
storeh_HEADERS = $(storedir)/*.h
debugdir = $(lsrcdir)/debug
debughdir = $(includedir)/CLucene/debug
debugh_HEADERS = $(debugdir)/*.h
analyzersdir = $(lsrcdir)/analysis
analyzershdir = $(includedir)/CLucene/analysis
analyzersh_HEADERS = $(analyzersdir)/*.h
stdandir = $(lsrcdir)/analysis/standard
stdanhdir = $(includedir)/CLucene/analysis/standard
stdanh_HEADERS = $(stdandir)/*.h
documentdir = $(lsrcdir)/document
documenthdir = $(includedir)/CLucene/document
documenth_HEADERS = $(documentdir)/*.h
indexdir = $(lsrcdir)/index
indexhdir = $(includedir)/CLucene/index
indexh_HEADERS = $(indexdir)/*.h
qpdir = $(lsrcdir)/queryParser
qphdir = $(includedir)/CLucene/queryParser
qph_HEADERS = $(qpdir)/*.h
searchdir = $(lsrcdir)/search
searchhdir = $(includedir)/CLucene/search
searchh_HEADERS = $(searchdir)/*.h
SUBDIRS = .
DIST_SUBDIRS = . demo
MAINTAINERCLEANFILES = Makefile.in
all: all-recursive
.SUFFIXES:
.SUFFIXES: .cpp .lo .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/CLucene/Makefile.am $(srcdir)/CLucene/config/Makefile.am $(srcdir)/CLucene/util/Makefile.am $(srcdir)/CLucene/store/Makefile.am $(srcdir)/CLucene/debug/Makefile.am $(srcdir)/CLucene/analysis/Makefile.am $(srcdir)/CLucene/analysis/standard/Makefile.am $(srcdir)/CLucene/document/Makefile.am $(srcdir)/CLucene/index/Makefile.am $(srcdir)/CLucene/queryParser/Makefile.am $(srcdir)/CLucene/search/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu src/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
f=$(am__strip_dir) \
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
else :; fi; \
done
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
p=$(am__strip_dir) \
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
libclucene.la: $(libclucene_la_OBJECTS) $(libclucene_la_DEPENDENCIES)
$(CXXLINK) -rpath $(libdir) $(libclucene_la_LDFLAGS) $(libclucene_la_OBJECTS) $(libclucene_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AnalysisHeader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Analyzers.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitSet.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BooleanQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BooleanScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CachingWrapperFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ChainedFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CompoundFile.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConjunctionScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DateField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DateFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Document.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DocumentWriter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Equators.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExactPhraseScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Explanation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FSDirectory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FastCharStream.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Field.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldCache.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldCacheImpl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldDocSortedHitQueue.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldInfos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldSortedHitQueue.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldsReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FieldsWriter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FilteredTermEnum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FuzzyQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HitQueue.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Hits.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexInput.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexModifier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexOutput.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexSearcher.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IndexWriter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Lexer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MD5Digester.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MMapInput.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Misc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiFieldQueryParser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiSearcher.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MultiTermQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PhrasePositions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PhraseQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PhraseScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PrefixQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryParser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryParserBase.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QueryToken.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RAMDirectory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RangeFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RangeQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Reader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SearchHeader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentInfos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentMergeInfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentMergeQueue.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentMerger.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentTermDocs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentTermEnum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentTermPositions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SegmentTermVector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Similarity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SloppyPhraseScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardAnalyzer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardFilter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardTokenizer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StdHeader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringBuffer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringIntern.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Term.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermInfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermInfosReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermInfosWriter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermScorer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermVectorReader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TermVectorWriter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThreadLocal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TokenList.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransactionalRAMDirectory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WildcardQuery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WildcardTermEnum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/condition.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dirent.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/error.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileinputstream.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gunichartables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memtracking.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_lltot.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_tcscasecmp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_tcslwr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_tcstod.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_tcstoll.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repl_tprintf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/threads.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8.Plo@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
StdHeader.lo: $(lsrcdir)/StdHeader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StdHeader.lo -MD -MP -MF "$(DEPDIR)/StdHeader.Tpo" -c -o StdHeader.lo `test -f '$(lsrcdir)/StdHeader.cpp' || echo '$(srcdir)/'`$(lsrcdir)/StdHeader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StdHeader.Tpo" "$(DEPDIR)/StdHeader.Plo"; else rm -f "$(DEPDIR)/StdHeader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(lsrcdir)/StdHeader.cpp' object='StdHeader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StdHeader.lo `test -f '$(lsrcdir)/StdHeader.cpp' || echo '$(srcdir)/'`$(lsrcdir)/StdHeader.cpp
gunichartables.lo: $(configdir)/gunichartables.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gunichartables.lo -MD -MP -MF "$(DEPDIR)/gunichartables.Tpo" -c -o gunichartables.lo `test -f '$(configdir)/gunichartables.cpp' || echo '$(srcdir)/'`$(configdir)/gunichartables.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/gunichartables.Tpo" "$(DEPDIR)/gunichartables.Plo"; else rm -f "$(DEPDIR)/gunichartables.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/gunichartables.cpp' object='gunichartables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gunichartables.lo `test -f '$(configdir)/gunichartables.cpp' || echo '$(srcdir)/'`$(configdir)/gunichartables.cpp
repl_lltot.lo: $(configdir)/repl_lltot.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_lltot.lo -MD -MP -MF "$(DEPDIR)/repl_lltot.Tpo" -c -o repl_lltot.lo `test -f '$(configdir)/repl_lltot.cpp' || echo '$(srcdir)/'`$(configdir)/repl_lltot.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_lltot.Tpo" "$(DEPDIR)/repl_lltot.Plo"; else rm -f "$(DEPDIR)/repl_lltot.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_lltot.cpp' object='repl_lltot.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_lltot.lo `test -f '$(configdir)/repl_lltot.cpp' || echo '$(srcdir)/'`$(configdir)/repl_lltot.cpp
repl_tcscasecmp.lo: $(configdir)/repl_tcscasecmp.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_tcscasecmp.lo -MD -MP -MF "$(DEPDIR)/repl_tcscasecmp.Tpo" -c -o repl_tcscasecmp.lo `test -f '$(configdir)/repl_tcscasecmp.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcscasecmp.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_tcscasecmp.Tpo" "$(DEPDIR)/repl_tcscasecmp.Plo"; else rm -f "$(DEPDIR)/repl_tcscasecmp.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_tcscasecmp.cpp' object='repl_tcscasecmp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_tcscasecmp.lo `test -f '$(configdir)/repl_tcscasecmp.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcscasecmp.cpp
repl_tcslwr.lo: $(configdir)/repl_tcslwr.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_tcslwr.lo -MD -MP -MF "$(DEPDIR)/repl_tcslwr.Tpo" -c -o repl_tcslwr.lo `test -f '$(configdir)/repl_tcslwr.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcslwr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_tcslwr.Tpo" "$(DEPDIR)/repl_tcslwr.Plo"; else rm -f "$(DEPDIR)/repl_tcslwr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_tcslwr.cpp' object='repl_tcslwr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_tcslwr.lo `test -f '$(configdir)/repl_tcslwr.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcslwr.cpp
repl_tcstod.lo: $(configdir)/repl_tcstod.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_tcstod.lo -MD -MP -MF "$(DEPDIR)/repl_tcstod.Tpo" -c -o repl_tcstod.lo `test -f '$(configdir)/repl_tcstod.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcstod.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_tcstod.Tpo" "$(DEPDIR)/repl_tcstod.Plo"; else rm -f "$(DEPDIR)/repl_tcstod.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_tcstod.cpp' object='repl_tcstod.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_tcstod.lo `test -f '$(configdir)/repl_tcstod.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcstod.cpp
repl_tcstoll.lo: $(configdir)/repl_tcstoll.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_tcstoll.lo -MD -MP -MF "$(DEPDIR)/repl_tcstoll.Tpo" -c -o repl_tcstoll.lo `test -f '$(configdir)/repl_tcstoll.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcstoll.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_tcstoll.Tpo" "$(DEPDIR)/repl_tcstoll.Plo"; else rm -f "$(DEPDIR)/repl_tcstoll.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_tcstoll.cpp' object='repl_tcstoll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_tcstoll.lo `test -f '$(configdir)/repl_tcstoll.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tcstoll.cpp
repl_tprintf.lo: $(configdir)/repl_tprintf.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT repl_tprintf.lo -MD -MP -MF "$(DEPDIR)/repl_tprintf.Tpo" -c -o repl_tprintf.lo `test -f '$(configdir)/repl_tprintf.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tprintf.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/repl_tprintf.Tpo" "$(DEPDIR)/repl_tprintf.Plo"; else rm -f "$(DEPDIR)/repl_tprintf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/repl_tprintf.cpp' object='repl_tprintf.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o repl_tprintf.lo `test -f '$(configdir)/repl_tprintf.cpp' || echo '$(srcdir)/'`$(configdir)/repl_tprintf.cpp
threads.lo: $(configdir)/threads.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT threads.lo -MD -MP -MF "$(DEPDIR)/threads.Tpo" -c -o threads.lo `test -f '$(configdir)/threads.cpp' || echo '$(srcdir)/'`$(configdir)/threads.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/threads.Tpo" "$(DEPDIR)/threads.Plo"; else rm -f "$(DEPDIR)/threads.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/threads.cpp' object='threads.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o threads.lo `test -f '$(configdir)/threads.cpp' || echo '$(srcdir)/'`$(configdir)/threads.cpp
utf8.lo: $(configdir)/utf8.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT utf8.lo -MD -MP -MF "$(DEPDIR)/utf8.Tpo" -c -o utf8.lo `test -f '$(configdir)/utf8.cpp' || echo '$(srcdir)/'`$(configdir)/utf8.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/utf8.Tpo" "$(DEPDIR)/utf8.Plo"; else rm -f "$(DEPDIR)/utf8.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(configdir)/utf8.cpp' object='utf8.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o utf8.lo `test -f '$(configdir)/utf8.cpp' || echo '$(srcdir)/'`$(configdir)/utf8.cpp
BitSet.lo: $(utildir)/BitSet.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitSet.lo -MD -MP -MF "$(DEPDIR)/BitSet.Tpo" -c -o BitSet.lo `test -f '$(utildir)/BitSet.cpp' || echo '$(srcdir)/'`$(utildir)/BitSet.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/BitSet.Tpo" "$(DEPDIR)/BitSet.Plo"; else rm -f "$(DEPDIR)/BitSet.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/BitSet.cpp' object='BitSet.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitSet.lo `test -f '$(utildir)/BitSet.cpp' || echo '$(srcdir)/'`$(utildir)/BitSet.cpp
dirent.lo: $(utildir)/dirent.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dirent.lo -MD -MP -MF "$(DEPDIR)/dirent.Tpo" -c -o dirent.lo `test -f '$(utildir)/dirent.cpp' || echo '$(srcdir)/'`$(utildir)/dirent.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/dirent.Tpo" "$(DEPDIR)/dirent.Plo"; else rm -f "$(DEPDIR)/dirent.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/dirent.cpp' object='dirent.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dirent.lo `test -f '$(utildir)/dirent.cpp' || echo '$(srcdir)/'`$(utildir)/dirent.cpp
Equators.lo: $(utildir)/Equators.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Equators.lo -MD -MP -MF "$(DEPDIR)/Equators.Tpo" -c -o Equators.lo `test -f '$(utildir)/Equators.cpp' || echo '$(srcdir)/'`$(utildir)/Equators.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Equators.Tpo" "$(DEPDIR)/Equators.Plo"; else rm -f "$(DEPDIR)/Equators.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/Equators.cpp' object='Equators.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Equators.lo `test -f '$(utildir)/Equators.cpp' || echo '$(srcdir)/'`$(utildir)/Equators.cpp
FastCharStream.lo: $(utildir)/FastCharStream.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FastCharStream.lo -MD -MP -MF "$(DEPDIR)/FastCharStream.Tpo" -c -o FastCharStream.lo `test -f '$(utildir)/FastCharStream.cpp' || echo '$(srcdir)/'`$(utildir)/FastCharStream.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/FastCharStream.Tpo" "$(DEPDIR)/FastCharStream.Plo"; else rm -f "$(DEPDIR)/FastCharStream.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/FastCharStream.cpp' object='FastCharStream.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FastCharStream.lo `test -f '$(utildir)/FastCharStream.cpp' || echo '$(srcdir)/'`$(utildir)/FastCharStream.cpp
fileinputstream.lo: $(utildir)/fileinputstream.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fileinputstream.lo -MD -MP -MF "$(DEPDIR)/fileinputstream.Tpo" -c -o fileinputstream.lo `test -f '$(utildir)/fileinputstream.cpp' || echo '$(srcdir)/'`$(utildir)/fileinputstream.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/fileinputstream.Tpo" "$(DEPDIR)/fileinputstream.Plo"; else rm -f "$(DEPDIR)/fileinputstream.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/fileinputstream.cpp' object='fileinputstream.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fileinputstream.lo `test -f '$(utildir)/fileinputstream.cpp' || echo '$(srcdir)/'`$(utildir)/fileinputstream.cpp
MD5Digester.lo: $(utildir)/MD5Digester.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MD5Digester.lo -MD -MP -MF "$(DEPDIR)/MD5Digester.Tpo" -c -o MD5Digester.lo `test -f '$(utildir)/MD5Digester.cpp' || echo '$(srcdir)/'`$(utildir)/MD5Digester.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/MD5Digester.Tpo" "$(DEPDIR)/MD5Digester.Plo"; else rm -f "$(DEPDIR)/MD5Digester.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/MD5Digester.cpp' object='MD5Digester.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MD5Digester.lo `test -f '$(utildir)/MD5Digester.cpp' || echo '$(srcdir)/'`$(utildir)/MD5Digester.cpp
Misc.lo: $(utildir)/Misc.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Misc.lo -MD -MP -MF "$(DEPDIR)/Misc.Tpo" -c -o Misc.lo `test -f '$(utildir)/Misc.cpp' || echo '$(srcdir)/'`$(utildir)/Misc.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Misc.Tpo" "$(DEPDIR)/Misc.Plo"; else rm -f "$(DEPDIR)/Misc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/Misc.cpp' object='Misc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Misc.lo `test -f '$(utildir)/Misc.cpp' || echo '$(srcdir)/'`$(utildir)/Misc.cpp
Reader.lo: $(utildir)/Reader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Reader.lo -MD -MP -MF "$(DEPDIR)/Reader.Tpo" -c -o Reader.lo `test -f '$(utildir)/Reader.cpp' || echo '$(srcdir)/'`$(utildir)/Reader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Reader.Tpo" "$(DEPDIR)/Reader.Plo"; else rm -f "$(DEPDIR)/Reader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/Reader.cpp' object='Reader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Reader.lo `test -f '$(utildir)/Reader.cpp' || echo '$(srcdir)/'`$(utildir)/Reader.cpp
StringBuffer.lo: $(utildir)/StringBuffer.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringBuffer.lo -MD -MP -MF "$(DEPDIR)/StringBuffer.Tpo" -c -o StringBuffer.lo `test -f '$(utildir)/StringBuffer.cpp' || echo '$(srcdir)/'`$(utildir)/StringBuffer.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StringBuffer.Tpo" "$(DEPDIR)/StringBuffer.Plo"; else rm -f "$(DEPDIR)/StringBuffer.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/StringBuffer.cpp' object='StringBuffer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringBuffer.lo `test -f '$(utildir)/StringBuffer.cpp' || echo '$(srcdir)/'`$(utildir)/StringBuffer.cpp
StringIntern.lo: $(utildir)/StringIntern.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringIntern.lo -MD -MP -MF "$(DEPDIR)/StringIntern.Tpo" -c -o StringIntern.lo `test -f '$(utildir)/StringIntern.cpp' || echo '$(srcdir)/'`$(utildir)/StringIntern.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StringIntern.Tpo" "$(DEPDIR)/StringIntern.Plo"; else rm -f "$(DEPDIR)/StringIntern.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/StringIntern.cpp' object='StringIntern.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringIntern.lo `test -f '$(utildir)/StringIntern.cpp' || echo '$(srcdir)/'`$(utildir)/StringIntern.cpp
ThreadLocal.lo: $(utildir)/ThreadLocal.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ThreadLocal.lo -MD -MP -MF "$(DEPDIR)/ThreadLocal.Tpo" -c -o ThreadLocal.lo `test -f '$(utildir)/ThreadLocal.cpp' || echo '$(srcdir)/'`$(utildir)/ThreadLocal.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/ThreadLocal.Tpo" "$(DEPDIR)/ThreadLocal.Plo"; else rm -f "$(DEPDIR)/ThreadLocal.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(utildir)/ThreadLocal.cpp' object='ThreadLocal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ThreadLocal.lo `test -f '$(utildir)/ThreadLocal.cpp' || echo '$(srcdir)/'`$(utildir)/ThreadLocal.cpp
FSDirectory.lo: $(storedir)/FSDirectory.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FSDirectory.lo -MD -MP -MF "$(DEPDIR)/FSDirectory.Tpo" -c -o FSDirectory.lo `test -f '$(storedir)/FSDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/FSDirectory.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/FSDirectory.Tpo" "$(DEPDIR)/FSDirectory.Plo"; else rm -f "$(DEPDIR)/FSDirectory.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/FSDirectory.cpp' object='FSDirectory.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FSDirectory.lo `test -f '$(storedir)/FSDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/FSDirectory.cpp
IndexInput.lo: $(storedir)/IndexInput.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IndexInput.lo -MD -MP -MF "$(DEPDIR)/IndexInput.Tpo" -c -o IndexInput.lo `test -f '$(storedir)/IndexInput.cpp' || echo '$(srcdir)/'`$(storedir)/IndexInput.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/IndexInput.Tpo" "$(DEPDIR)/IndexInput.Plo"; else rm -f "$(DEPDIR)/IndexInput.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/IndexInput.cpp' object='IndexInput.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IndexInput.lo `test -f '$(storedir)/IndexInput.cpp' || echo '$(srcdir)/'`$(storedir)/IndexInput.cpp
Lock.lo: $(storedir)/Lock.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Lock.lo -MD -MP -MF "$(DEPDIR)/Lock.Tpo" -c -o Lock.lo `test -f '$(storedir)/Lock.cpp' || echo '$(srcdir)/'`$(storedir)/Lock.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Lock.Tpo" "$(DEPDIR)/Lock.Plo"; else rm -f "$(DEPDIR)/Lock.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/Lock.cpp' object='Lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Lock.lo `test -f '$(storedir)/Lock.cpp' || echo '$(srcdir)/'`$(storedir)/Lock.cpp
IndexOutput.lo: $(storedir)/IndexOutput.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IndexOutput.lo -MD -MP -MF "$(DEPDIR)/IndexOutput.Tpo" -c -o IndexOutput.lo `test -f '$(storedir)/IndexOutput.cpp' || echo '$(srcdir)/'`$(storedir)/IndexOutput.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/IndexOutput.Tpo" "$(DEPDIR)/IndexOutput.Plo"; else rm -f "$(DEPDIR)/IndexOutput.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/IndexOutput.cpp' object='IndexOutput.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IndexOutput.lo `test -f '$(storedir)/IndexOutput.cpp' || echo '$(srcdir)/'`$(storedir)/IndexOutput.cpp
MMapInput.lo: $(storedir)/MMapInput.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MMapInput.lo -MD -MP -MF "$(DEPDIR)/MMapInput.Tpo" -c -o MMapInput.lo `test -f '$(storedir)/MMapInput.cpp' || echo '$(srcdir)/'`$(storedir)/MMapInput.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/MMapInput.Tpo" "$(DEPDIR)/MMapInput.Plo"; else rm -f "$(DEPDIR)/MMapInput.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/MMapInput.cpp' object='MMapInput.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MMapInput.lo `test -f '$(storedir)/MMapInput.cpp' || echo '$(srcdir)/'`$(storedir)/MMapInput.cpp
RAMDirectory.lo: $(storedir)/RAMDirectory.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT RAMDirectory.lo -MD -MP -MF "$(DEPDIR)/RAMDirectory.Tpo" -c -o RAMDirectory.lo `test -f '$(storedir)/RAMDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/RAMDirectory.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/RAMDirectory.Tpo" "$(DEPDIR)/RAMDirectory.Plo"; else rm -f "$(DEPDIR)/RAMDirectory.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/RAMDirectory.cpp' object='RAMDirectory.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o RAMDirectory.lo `test -f '$(storedir)/RAMDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/RAMDirectory.cpp
TransactionalRAMDirectory.lo: $(storedir)/TransactionalRAMDirectory.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TransactionalRAMDirectory.lo -MD -MP -MF "$(DEPDIR)/TransactionalRAMDirectory.Tpo" -c -o TransactionalRAMDirectory.lo `test -f '$(storedir)/TransactionalRAMDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/TransactionalRAMDirectory.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/TransactionalRAMDirectory.Tpo" "$(DEPDIR)/TransactionalRAMDirectory.Plo"; else rm -f "$(DEPDIR)/TransactionalRAMDirectory.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(storedir)/TransactionalRAMDirectory.cpp' object='TransactionalRAMDirectory.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TransactionalRAMDirectory.lo `test -f '$(storedir)/TransactionalRAMDirectory.cpp' || echo '$(srcdir)/'`$(storedir)/TransactionalRAMDirectory.cpp
condition.lo: $(debugdir)/condition.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT condition.lo -MD -MP -MF "$(DEPDIR)/condition.Tpo" -c -o condition.lo `test -f '$(debugdir)/condition.cpp' || echo '$(srcdir)/'`$(debugdir)/condition.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/condition.Tpo" "$(DEPDIR)/condition.Plo"; else rm -f "$(DEPDIR)/condition.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(debugdir)/condition.cpp' object='condition.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o condition.lo `test -f '$(debugdir)/condition.cpp' || echo '$(srcdir)/'`$(debugdir)/condition.cpp
error.lo: $(debugdir)/error.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT error.lo -MD -MP -MF "$(DEPDIR)/error.Tpo" -c -o error.lo `test -f '$(debugdir)/error.cpp' || echo '$(srcdir)/'`$(debugdir)/error.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/error.Tpo" "$(DEPDIR)/error.Plo"; else rm -f "$(DEPDIR)/error.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(debugdir)/error.cpp' object='error.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o error.lo `test -f '$(debugdir)/error.cpp' || echo '$(srcdir)/'`$(debugdir)/error.cpp
memtracking.lo: $(debugdir)/memtracking.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT memtracking.lo -MD -MP -MF "$(DEPDIR)/memtracking.Tpo" -c -o memtracking.lo `test -f '$(debugdir)/memtracking.cpp' || echo '$(srcdir)/'`$(debugdir)/memtracking.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/memtracking.Tpo" "$(DEPDIR)/memtracking.Plo"; else rm -f "$(DEPDIR)/memtracking.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(debugdir)/memtracking.cpp' object='memtracking.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o memtracking.lo `test -f '$(debugdir)/memtracking.cpp' || echo '$(srcdir)/'`$(debugdir)/memtracking.cpp
Analyzers.lo: $(analyzersdir)/Analyzers.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Analyzers.lo -MD -MP -MF "$(DEPDIR)/Analyzers.Tpo" -c -o Analyzers.lo `test -f '$(analyzersdir)/Analyzers.cpp' || echo '$(srcdir)/'`$(analyzersdir)/Analyzers.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Analyzers.Tpo" "$(DEPDIR)/Analyzers.Plo"; else rm -f "$(DEPDIR)/Analyzers.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(analyzersdir)/Analyzers.cpp' object='Analyzers.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Analyzers.lo `test -f '$(analyzersdir)/Analyzers.cpp' || echo '$(srcdir)/'`$(analyzersdir)/Analyzers.cpp
AnalysisHeader.lo: $(analyzersdir)/AnalysisHeader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT AnalysisHeader.lo -MD -MP -MF "$(DEPDIR)/AnalysisHeader.Tpo" -c -o AnalysisHeader.lo `test -f '$(analyzersdir)/AnalysisHeader.cpp' || echo '$(srcdir)/'`$(analyzersdir)/AnalysisHeader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/AnalysisHeader.Tpo" "$(DEPDIR)/AnalysisHeader.Plo"; else rm -f "$(DEPDIR)/AnalysisHeader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(analyzersdir)/AnalysisHeader.cpp' object='AnalysisHeader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o AnalysisHeader.lo `test -f '$(analyzersdir)/AnalysisHeader.cpp' || echo '$(srcdir)/'`$(analyzersdir)/AnalysisHeader.cpp
StandardAnalyzer.lo: $(stdandir)/StandardAnalyzer.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StandardAnalyzer.lo -MD -MP -MF "$(DEPDIR)/StandardAnalyzer.Tpo" -c -o StandardAnalyzer.lo `test -f '$(stdandir)/StandardAnalyzer.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardAnalyzer.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StandardAnalyzer.Tpo" "$(DEPDIR)/StandardAnalyzer.Plo"; else rm -f "$(DEPDIR)/StandardAnalyzer.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(stdandir)/StandardAnalyzer.cpp' object='StandardAnalyzer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StandardAnalyzer.lo `test -f '$(stdandir)/StandardAnalyzer.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardAnalyzer.cpp
StandardFilter.lo: $(stdandir)/StandardFilter.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StandardFilter.lo -MD -MP -MF "$(DEPDIR)/StandardFilter.Tpo" -c -o StandardFilter.lo `test -f '$(stdandir)/StandardFilter.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardFilter.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StandardFilter.Tpo" "$(DEPDIR)/StandardFilter.Plo"; else rm -f "$(DEPDIR)/StandardFilter.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(stdandir)/StandardFilter.cpp' object='StandardFilter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StandardFilter.lo `test -f '$(stdandir)/StandardFilter.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardFilter.cpp
StandardTokenizer.lo: $(stdandir)/StandardTokenizer.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StandardTokenizer.lo -MD -MP -MF "$(DEPDIR)/StandardTokenizer.Tpo" -c -o StandardTokenizer.lo `test -f '$(stdandir)/StandardTokenizer.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardTokenizer.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/StandardTokenizer.Tpo" "$(DEPDIR)/StandardTokenizer.Plo"; else rm -f "$(DEPDIR)/StandardTokenizer.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(stdandir)/StandardTokenizer.cpp' object='StandardTokenizer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StandardTokenizer.lo `test -f '$(stdandir)/StandardTokenizer.cpp' || echo '$(srcdir)/'`$(stdandir)/StandardTokenizer.cpp
DateField.lo: $(documentdir)/DateField.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DateField.lo -MD -MP -MF "$(DEPDIR)/DateField.Tpo" -c -o DateField.lo `test -f '$(documentdir)/DateField.cpp' || echo '$(srcdir)/'`$(documentdir)/DateField.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/DateField.Tpo" "$(DEPDIR)/DateField.Plo"; else rm -f "$(DEPDIR)/DateField.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(documentdir)/DateField.cpp' object='DateField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DateField.lo `test -f '$(documentdir)/DateField.cpp' || echo '$(srcdir)/'`$(documentdir)/DateField.cpp
Document.lo: $(documentdir)/Document.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Document.lo -MD -MP -MF "$(DEPDIR)/Document.Tpo" -c -o Document.lo `test -f '$(documentdir)/Document.cpp' || echo '$(srcdir)/'`$(documentdir)/Document.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Document.Tpo" "$(DEPDIR)/Document.Plo"; else rm -f "$(DEPDIR)/Document.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(documentdir)/Document.cpp' object='Document.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Document.lo `test -f '$(documentdir)/Document.cpp' || echo '$(srcdir)/'`$(documentdir)/Document.cpp
Field.lo: $(documentdir)/Field.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Field.lo -MD -MP -MF "$(DEPDIR)/Field.Tpo" -c -o Field.lo `test -f '$(documentdir)/Field.cpp' || echo '$(srcdir)/'`$(documentdir)/Field.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Field.Tpo" "$(DEPDIR)/Field.Plo"; else rm -f "$(DEPDIR)/Field.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(documentdir)/Field.cpp' object='Field.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Field.lo `test -f '$(documentdir)/Field.cpp' || echo '$(srcdir)/'`$(documentdir)/Field.cpp
CompoundFile.lo: $(indexdir)/CompoundFile.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT CompoundFile.lo -MD -MP -MF "$(DEPDIR)/CompoundFile.Tpo" -c -o CompoundFile.lo `test -f '$(indexdir)/CompoundFile.cpp' || echo '$(srcdir)/'`$(indexdir)/CompoundFile.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/CompoundFile.Tpo" "$(DEPDIR)/CompoundFile.Plo"; else rm -f "$(DEPDIR)/CompoundFile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/CompoundFile.cpp' object='CompoundFile.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o CompoundFile.lo `test -f '$(indexdir)/CompoundFile.cpp' || echo '$(srcdir)/'`$(indexdir)/CompoundFile.cpp
DocumentWriter.lo: $(indexdir)/DocumentWriter.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DocumentWriter.lo -MD -MP -MF "$(DEPDIR)/DocumentWriter.Tpo" -c -o DocumentWriter.lo `test -f '$(indexdir)/DocumentWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/DocumentWriter.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/DocumentWriter.Tpo" "$(DEPDIR)/DocumentWriter.Plo"; else rm -f "$(DEPDIR)/DocumentWriter.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/DocumentWriter.cpp' object='DocumentWriter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DocumentWriter.lo `test -f '$(indexdir)/DocumentWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/DocumentWriter.cpp
FieldInfos.lo: $(indexdir)/FieldInfos.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FieldInfos.lo -MD -MP -MF "$(DEPDIR)/FieldInfos.Tpo" -c -o FieldInfos.lo `test -f '$(indexdir)/FieldInfos.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldInfos.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/FieldInfos.Tpo" "$(DEPDIR)/FieldInfos.Plo"; else rm -f "$(DEPDIR)/FieldInfos.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/FieldInfos.cpp' object='FieldInfos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FieldInfos.lo `test -f '$(indexdir)/FieldInfos.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldInfos.cpp
FieldsReader.lo: $(indexdir)/FieldsReader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FieldsReader.lo -MD -MP -MF "$(DEPDIR)/FieldsReader.Tpo" -c -o FieldsReader.lo `test -f '$(indexdir)/FieldsReader.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldsReader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/FieldsReader.Tpo" "$(DEPDIR)/FieldsReader.Plo"; else rm -f "$(DEPDIR)/FieldsReader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/FieldsReader.cpp' object='FieldsReader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FieldsReader.lo `test -f '$(indexdir)/FieldsReader.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldsReader.cpp
FieldsWriter.lo: $(indexdir)/FieldsWriter.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FieldsWriter.lo -MD -MP -MF "$(DEPDIR)/FieldsWriter.Tpo" -c -o FieldsWriter.lo `test -f '$(indexdir)/FieldsWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldsWriter.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/FieldsWriter.Tpo" "$(DEPDIR)/FieldsWriter.Plo"; else rm -f "$(DEPDIR)/FieldsWriter.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/FieldsWriter.cpp' object='FieldsWriter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FieldsWriter.lo `test -f '$(indexdir)/FieldsWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/FieldsWriter.cpp
IndexModifier.lo: $(indexdir)/IndexModifier.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IndexModifier.lo -MD -MP -MF "$(DEPDIR)/IndexModifier.Tpo" -c -o IndexModifier.lo `test -f '$(indexdir)/IndexModifier.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexModifier.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/IndexModifier.Tpo" "$(DEPDIR)/IndexModifier.Plo"; else rm -f "$(DEPDIR)/IndexModifier.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/IndexModifier.cpp' object='IndexModifier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IndexModifier.lo `test -f '$(indexdir)/IndexModifier.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexModifier.cpp
IndexReader.lo: $(indexdir)/IndexReader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IndexReader.lo -MD -MP -MF "$(DEPDIR)/IndexReader.Tpo" -c -o IndexReader.lo `test -f '$(indexdir)/IndexReader.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexReader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/IndexReader.Tpo" "$(DEPDIR)/IndexReader.Plo"; else rm -f "$(DEPDIR)/IndexReader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/IndexReader.cpp' object='IndexReader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IndexReader.lo `test -f '$(indexdir)/IndexReader.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexReader.cpp
IndexWriter.lo: $(indexdir)/IndexWriter.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IndexWriter.lo -MD -MP -MF "$(DEPDIR)/IndexWriter.Tpo" -c -o IndexWriter.lo `test -f '$(indexdir)/IndexWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexWriter.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/IndexWriter.Tpo" "$(DEPDIR)/IndexWriter.Plo"; else rm -f "$(DEPDIR)/IndexWriter.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/IndexWriter.cpp' object='IndexWriter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IndexWriter.lo `test -f '$(indexdir)/IndexWriter.cpp' || echo '$(srcdir)/'`$(indexdir)/IndexWriter.cpp
MultiReader.lo: $(indexdir)/MultiReader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MultiReader.lo -MD -MP -MF "$(DEPDIR)/MultiReader.Tpo" -c -o MultiReader.lo `test -f '$(indexdir)/MultiReader.cpp' || echo '$(srcdir)/'`$(indexdir)/MultiReader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/MultiReader.Tpo" "$(DEPDIR)/MultiReader.Plo"; else rm -f "$(DEPDIR)/MultiReader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/MultiReader.cpp' object='MultiReader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MultiReader.lo `test -f '$(indexdir)/MultiReader.cpp' || echo '$(srcdir)/'`$(indexdir)/MultiReader.cpp
SegmentInfos.lo: $(indexdir)/SegmentInfos.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentInfos.lo -MD -MP -MF "$(DEPDIR)/SegmentInfos.Tpo" -c -o SegmentInfos.lo `test -f '$(indexdir)/SegmentInfos.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentInfos.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentInfos.Tpo" "$(DEPDIR)/SegmentInfos.Plo"; else rm -f "$(DEPDIR)/SegmentInfos.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentInfos.cpp' object='SegmentInfos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentInfos.lo `test -f '$(indexdir)/SegmentInfos.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentInfos.cpp
SegmentMergeInfo.lo: $(indexdir)/SegmentMergeInfo.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentMergeInfo.lo -MD -MP -MF "$(DEPDIR)/SegmentMergeInfo.Tpo" -c -o SegmentMergeInfo.lo `test -f '$(indexdir)/SegmentMergeInfo.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMergeInfo.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentMergeInfo.Tpo" "$(DEPDIR)/SegmentMergeInfo.Plo"; else rm -f "$(DEPDIR)/SegmentMergeInfo.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentMergeInfo.cpp' object='SegmentMergeInfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentMergeInfo.lo `test -f '$(indexdir)/SegmentMergeInfo.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMergeInfo.cpp
SegmentMerger.lo: $(indexdir)/SegmentMerger.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentMerger.lo -MD -MP -MF "$(DEPDIR)/SegmentMerger.Tpo" -c -o SegmentMerger.lo `test -f '$(indexdir)/SegmentMerger.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMerger.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentMerger.Tpo" "$(DEPDIR)/SegmentMerger.Plo"; else rm -f "$(DEPDIR)/SegmentMerger.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentMerger.cpp' object='SegmentMerger.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentMerger.lo `test -f '$(indexdir)/SegmentMerger.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMerger.cpp
SegmentMergeQueue.lo: $(indexdir)/SegmentMergeQueue.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentMergeQueue.lo -MD -MP -MF "$(DEPDIR)/SegmentMergeQueue.Tpo" -c -o SegmentMergeQueue.lo `test -f '$(indexdir)/SegmentMergeQueue.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMergeQueue.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentMergeQueue.Tpo" "$(DEPDIR)/SegmentMergeQueue.Plo"; else rm -f "$(DEPDIR)/SegmentMergeQueue.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentMergeQueue.cpp' object='SegmentMergeQueue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentMergeQueue.lo `test -f '$(indexdir)/SegmentMergeQueue.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentMergeQueue.cpp
SegmentReader.lo: $(indexdir)/SegmentReader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentReader.lo -MD -MP -MF "$(DEPDIR)/SegmentReader.Tpo" -c -o SegmentReader.lo `test -f '$(indexdir)/SegmentReader.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentReader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentReader.Tpo" "$(DEPDIR)/SegmentReader.Plo"; else rm -f "$(DEPDIR)/SegmentReader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentReader.cpp' object='SegmentReader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentReader.lo `test -f '$(indexdir)/SegmentReader.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentReader.cpp
SegmentTermDocs.lo: $(indexdir)/SegmentTermDocs.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentTermDocs.lo -MD -MP -MF "$(DEPDIR)/SegmentTermDocs.Tpo" -c -o SegmentTermDocs.lo `test -f '$(indexdir)/SegmentTermDocs.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermDocs.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentTermDocs.Tpo" "$(DEPDIR)/SegmentTermDocs.Plo"; else rm -f "$(DEPDIR)/SegmentTermDocs.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentTermDocs.cpp' object='SegmentTermDocs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentTermDocs.lo `test -f '$(indexdir)/SegmentTermDocs.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermDocs.cpp
SegmentTermEnum.lo: $(indexdir)/SegmentTermEnum.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentTermEnum.lo -MD -MP -MF "$(DEPDIR)/SegmentTermEnum.Tpo" -c -o SegmentTermEnum.lo `test -f '$(indexdir)/SegmentTermEnum.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermEnum.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentTermEnum.Tpo" "$(DEPDIR)/SegmentTermEnum.Plo"; else rm -f "$(DEPDIR)/SegmentTermEnum.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentTermEnum.cpp' object='SegmentTermEnum.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentTermEnum.lo `test -f '$(indexdir)/SegmentTermEnum.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermEnum.cpp
SegmentTermPositions.lo: $(indexdir)/SegmentTermPositions.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentTermPositions.lo -MD -MP -MF "$(DEPDIR)/SegmentTermPositions.Tpo" -c -o SegmentTermPositions.lo `test -f '$(indexdir)/SegmentTermPositions.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermPositions.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentTermPositions.Tpo" "$(DEPDIR)/SegmentTermPositions.Plo"; else rm -f "$(DEPDIR)/SegmentTermPositions.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentTermPositions.cpp' object='SegmentTermPositions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentTermPositions.lo `test -f '$(indexdir)/SegmentTermPositions.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermPositions.cpp
SegmentTermVector.lo: $(indexdir)/SegmentTermVector.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SegmentTermVector.lo -MD -MP -MF "$(DEPDIR)/SegmentTermVector.Tpo" -c -o SegmentTermVector.lo `test -f '$(indexdir)/SegmentTermVector.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermVector.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/SegmentTermVector.Tpo" "$(DEPDIR)/SegmentTermVector.Plo"; else rm -f "$(DEPDIR)/SegmentTermVector.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/SegmentTermVector.cpp' object='SegmentTermVector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SegmentTermVector.lo `test -f '$(indexdir)/SegmentTermVector.cpp' || echo '$(srcdir)/'`$(indexdir)/SegmentTermVector.cpp
Term.lo: $(indexdir)/Term.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Term.lo -MD -MP -MF "$(DEPDIR)/Term.Tpo" -c -o Term.lo `test -f '$(indexdir)/Term.cpp' || echo '$(srcdir)/'`$(indexdir)/Term.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/Term.Tpo" "$(DEPDIR)/Term.Plo"; else rm -f "$(DEPDIR)/Term.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/Term.cpp' object='Term.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Term.lo `test -f '$(indexdir)/Term.cpp' || echo '$(srcdir)/'`$(indexdir)/Term.cpp
TermInfo.lo: $(indexdir)/TermInfo.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TermInfo.lo -MD -MP -MF "$(DEPDIR)/TermInfo.Tpo" -c -o TermInfo.lo `test -f '$(indexdir)/TermInfo.cpp' || echo '$(srcdir)/'`$(indexdir)/TermInfo.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/TermInfo.Tpo" "$(DEPDIR)/TermInfo.Plo"; else rm -f "$(DEPDIR)/TermInfo.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/TermInfo.cpp' object='TermInfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TermInfo.lo `test -f '$(indexdir)/TermInfo.cpp' || echo '$(srcdir)/'`$(indexdir)/TermInfo.cpp
TermInfosReader.lo: $(indexdir)/TermInfosReader.cpp
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TermInfosReader.lo -MD -MP -MF "$(DEPDIR)/TermInfosReader.Tpo" -c -o TermInfosReader.lo `test -f '$(indexdir)/TermInfosReader.cpp' || echo '$(srcdir)/'`$(indexdir)/TermInfosReader.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/TermInfosReader.Tpo" "$(DEPDIR)/TermInfosReader.Plo"; else rm -f "$(DEPDIR)/TermInfosReader.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$(indexdir)/TermInfosReader.cpp' object='TermInfosReader.lo' libtool=yes @AMDEPBACKSLASH@