google_hash 0.8.2 → 0.8.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.txt +15 -0
- data/README +13 -4
- data/TODO +12 -6
- data/VERSION +1 -1
- data/ext/clean.bat +0 -0
- data/ext/clean.sh +0 -0
- data/ext/extconf.rb +9 -9
- data/ext/go.bat +0 -0
- data/ext/sparsehash-2.0.2/config.guess +0 -0
- data/ext/sparsehash-2.0.2/config.sub +0 -0
- data/ext/sparsehash-2.0.2/configure +0 -0
- data/ext/sparsehash-2.0.2/depcomp +0 -0
- data/ext/sparsehash-2.0.2/install-sh +0 -0
- data/ext/sparsehash-2.0.2/missing +0 -0
- data/ext/sparsehash-2.0.2/packages/deb.sh +0 -0
- data/ext/sparsehash-2.0.2/packages/deb/rules +0 -0
- data/ext/sparsehash-2.0.2/packages/rpm.sh +0 -0
- data/ext/sparsehash-2.0.2/sparsehash.sln +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/hashtable_test/hashtable_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/libc_allocator_with_realloc_test/libc_allocator_with_realloc_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/simple_test/simple_test.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/sparsetable_unittest/sparsetable_unittest.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/time_hash_map/time_hash_map.vcproj +0 -0
- data/ext/sparsehash-2.0.2/vsprojects/type_traits_unittest/type_traits_unittest.vcproj +0 -0
- data/ext/spec.bat +0 -0
- data/ext/template/google_hash.cpp.erb +8 -11
- data/google_hash.gemspec +159 -142
- data/spec/bench_gc.rb +16 -14
- data/spec/benchmark.rb +7 -6
- data/spec/spec.google_hash.rb +23 -23
- metadata +3 -7
- data/changelog +0 -11
- data/ext/sparsehash-2.0.2/Makefile +0 -1336
- data/ext/sparsehash-2.0.2/config.status +0 -1238
- data/ext/sparsehash-2.0.2/src/config.h +0 -132
data/spec/bench_gc.rb
CHANGED
@@ -1,20 +1,22 @@
|
|
1
|
-
|
2
|
-
require 'google_hash'
|
3
1
|
require 'sane'
|
2
|
+
require_relative '../ext/google_hash'
|
4
3
|
require 'benchmark'
|
5
|
-
sparse
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
4
|
+
if !ARGV[0].in? ['sparse', 'dense', 'ruby']
|
5
|
+
puts 'syntax: bench_gc.rb sparse|dense|ruby'
|
6
|
+
exit 1
|
7
|
+
end
|
8
|
+
|
9
|
+
p ARGV[0]
|
10
|
+
if ARGV[0] == 'sparse'
|
11
|
+
a = GoogleHashSparseIntToInt.new
|
12
|
+
elsif ARGV[0] == 'dense'
|
13
13
|
a = GoogleHashDenseIntToInt.new
|
14
|
+
elsif ARGV[0] == 'ruby'
|
15
|
+
a = Hash.new
|
14
16
|
else
|
15
|
-
|
16
|
-
a = []
|
17
|
+
throw 'never get here'
|
17
18
|
end
|
18
|
-
took = Benchmark.realtime { 200_00000.times {|i| a[i] = i} }
|
19
19
|
|
20
|
-
|
20
|
+
took = Benchmark.realtime { 2_000_000.times {|i| a[i] = i} }
|
21
|
+
|
22
|
+
p 'took second', took.group_digits, 'mem used:', OS.rss_bytes.group_digits, 'each gc now takes', Benchmark.realtime {GC.start}.group_digits, ObjectSpace.count_objects
|
data/spec/benchmark.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
require '
|
1
|
+
require 'sane' # gem
|
2
|
+
require_relative '../ext/google_hash'
|
2
3
|
require 'benchmark'
|
3
4
|
require 'hitimes' # gem
|
4
|
-
require 'sane' # gem
|
5
5
|
|
6
6
|
def measure
|
7
7
|
Hitimes::Interval.measure { yield }
|
@@ -15,14 +15,15 @@ end
|
|
15
15
|
def go num
|
16
16
|
puts RUBY_DESCRIPTION
|
17
17
|
puts "inserting #{num} objects"
|
18
|
-
puts "remember that these may be more RAM space efficient than ruby's standard hash, as well, esp. the sparse hash
|
18
|
+
puts "remember that these may be more RAM space efficient than ruby's standard hash, as well, esp. the sparse hash--see the file bench_gc.rb"
|
19
19
|
puts "double is like float, long is like a large int"
|
20
20
|
# get all existing
|
21
|
-
all_google_hashmap_classes = Object.constants.grep(
|
22
|
-
all = [Hash]
|
21
|
+
all_google_hashmap_classes = Object.constants.grep(/^GoogleHash.*/).reject{|n| n == :GoogleHash}.map{|n| eval n.to_s}
|
22
|
+
all = all_google_hashmap_classes + [Hash]
|
23
23
|
|
24
24
|
for name in all do
|
25
|
-
GC.start
|
25
|
+
GC.start # try to clear the previous run's hash from memory :)
|
26
|
+
GC.disable # don't let this taint runs
|
26
27
|
subject = name.new
|
27
28
|
puts
|
28
29
|
if name == Hash
|
data/spec/spec.google_hash.rb
CHANGED
@@ -71,12 +71,6 @@ describe "google_hash" do
|
|
71
71
|
@subject[33].should == 'def'
|
72
72
|
end
|
73
73
|
|
74
|
-
pending "they should all have a clear method" do
|
75
|
-
for kls in get_all_classes
|
76
|
-
kls.new.clear
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
74
|
it 'should not be able to set the absent key for double' do
|
81
75
|
if OS.bits == 32
|
82
76
|
unreachable_int = 31
|
@@ -133,10 +127,6 @@ describe "google_hash" do
|
|
133
127
|
@subject[0].should == 'abc'
|
134
128
|
end
|
135
129
|
|
136
|
-
it "should do BigNums" do
|
137
|
-
pending "if necessary"
|
138
|
-
end
|
139
|
-
|
140
130
|
it "should do longs" do
|
141
131
|
GoogleHashDenseLongToLong.new
|
142
132
|
end
|
@@ -208,7 +198,7 @@ describe "google_hash" do
|
|
208
198
|
end
|
209
199
|
|
210
200
|
it "should do delete from dense" do
|
211
|
-
GoogleHashDenseDoubleToInt.new.delete(
|
201
|
+
GoogleHashDenseDoubleToInt.new.delete(0).should == nil
|
212
202
|
end
|
213
203
|
|
214
204
|
it "should do int values as doubles" do
|
@@ -239,7 +229,7 @@ describe "google_hash" do
|
|
239
229
|
|
240
230
|
it "should allow for storing true bignums" do
|
241
231
|
pending
|
242
|
-
|
232
|
+
'TODO: same as above plus the following:'
|
243
233
|
a = GoogleHashDenseBignumToRuby.new
|
244
234
|
a[10000000000000000000] = 'abc'
|
245
235
|
end
|
@@ -267,27 +257,37 @@ describe "google_hash" do
|
|
267
257
|
pending 'caring, get from gc_bench.rb'
|
268
258
|
end
|
269
259
|
|
270
|
-
def get_all_classes
|
260
|
+
def self.get_all_classes
|
271
261
|
Object.constants.grep(/googlehash/i).map{|c| Object.const_get(c) }
|
272
262
|
end
|
273
263
|
|
274
|
-
it "should allow for setting the right keys" do
|
275
264
|
all_classes = get_all_classes
|
276
265
|
all_classes.select{|c| c.to_s =~ /(int|long|double)to/i}.each{|c|
|
277
|
-
|
278
|
-
keys = [0, 1, -1, 1<<29]
|
266
|
+
keys = [0, 1, -1, 2, -1, 1<<29]
|
279
267
|
if OS.bits == 64
|
280
268
|
keys << (1<<61)
|
281
269
|
end
|
282
270
|
keys.each{|k|
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
271
|
+
it "should allow for setting the right keys #{k} #{c}" do
|
272
|
+
instance = c.new
|
273
|
+
instance[k].should == nil
|
274
|
+
instance[k] = 0
|
275
|
+
instance[k+1] = 3
|
276
|
+
instance[k-1] = 2
|
277
|
+
instance[k].should == 0
|
278
|
+
instance[k-1].should == 2
|
279
|
+
instance[k+1].should == 3
|
280
|
+
instance.delete k
|
281
|
+
instance[k].should == nil
|
282
|
+
# delete should not affect neighbors
|
283
|
+
instance[k-1].should == 2
|
284
|
+
instance[k+1].should == 3
|
285
|
+
# test #clear too here, why not? :)
|
286
|
+
instance.clear
|
287
|
+
instance[k-1].should == nil
|
288
|
+
instance[k+1].should == nil
|
289
|
+
end
|
289
290
|
}
|
290
291
|
}
|
291
|
-
end
|
292
292
|
|
293
293
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google_hash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-05-
|
12
|
+
date: 2014-05-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sane
|
@@ -58,7 +58,6 @@ files:
|
|
58
58
|
- Rakefile
|
59
59
|
- TODO
|
60
60
|
- VERSION
|
61
|
-
- changelog
|
62
61
|
- ext/clean.bat
|
63
62
|
- ext/clean.sh
|
64
63
|
- ext/extconf.rb
|
@@ -67,7 +66,6 @@ files:
|
|
67
66
|
- ext/sparsehash-2.0.2/COPYING
|
68
67
|
- ext/sparsehash-2.0.2/ChangeLog
|
69
68
|
- ext/sparsehash-2.0.2/INSTALL
|
70
|
-
- ext/sparsehash-2.0.2/Makefile
|
71
69
|
- ext/sparsehash-2.0.2/Makefile.am
|
72
70
|
- ext/sparsehash-2.0.2/Makefile.in
|
73
71
|
- ext/sparsehash-2.0.2/NEWS
|
@@ -77,7 +75,6 @@ files:
|
|
77
75
|
- ext/sparsehash-2.0.2/aclocal.m4
|
78
76
|
- ext/sparsehash-2.0.2/allocator.patch
|
79
77
|
- ext/sparsehash-2.0.2/config.guess
|
80
|
-
- ext/sparsehash-2.0.2/config.status
|
81
78
|
- ext/sparsehash-2.0.2/config.sub
|
82
79
|
- ext/sparsehash-2.0.2/configure
|
83
80
|
- ext/sparsehash-2.0.2/configure.ac
|
@@ -116,7 +113,6 @@ files:
|
|
116
113
|
- ext/sparsehash-2.0.2/packages/rpm.sh
|
117
114
|
- ext/sparsehash-2.0.2/packages/rpm/rpm.spec
|
118
115
|
- ext/sparsehash-2.0.2/sparsehash.sln
|
119
|
-
- ext/sparsehash-2.0.2/src/config.h
|
120
116
|
- ext/sparsehash-2.0.2/src/config.h.in
|
121
117
|
- ext/sparsehash-2.0.2/src/config.h.include
|
122
118
|
- ext/sparsehash-2.0.2/src/google/dense_hash_map
|
@@ -193,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
189
|
version: '0'
|
194
190
|
requirements: []
|
195
191
|
rubyforge_project:
|
196
|
-
rubygems_version: 1.8.
|
192
|
+
rubygems_version: 1.8.24
|
197
193
|
signing_key:
|
198
194
|
specification_version: 3
|
199
195
|
summary: Ruby wrappers to the google hash library
|
data/changelog
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
0.8.1:
|
2
|
-
work with OS X newer compilers
|
3
|
-
|
4
|
-
0.8.0:
|
5
|
-
add a delete method for the Sparse** classes
|
6
|
-
actually delete the hashmaps when the object is collected by Ruby, instead of leaking
|
7
|
-
hopefully work with more versions of GCC
|
8
|
-
|
9
|
-
0.7.0:
|
10
|
-
fix building in linux with newer GCC's, fix building in windows with broken system command (?)
|
11
|
-
bump internal google_hash version to 0.8.2
|
@@ -1,1336 +0,0 @@
|
|
1
|
-
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
2
|
-
# Makefile. Generated from Makefile.in by configure.
|
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
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
pkgdatadir = $(datadir)/sparsehash
|
23
|
-
pkgincludedir = $(includedir)/sparsehash
|
24
|
-
pkglibdir = $(libdir)/sparsehash
|
25
|
-
pkglibexecdir = $(libexecdir)/sparsehash
|
26
|
-
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
27
|
-
install_sh_DATA = $(install_sh) -c -m 644
|
28
|
-
install_sh_PROGRAM = $(install_sh) -c
|
29
|
-
install_sh_SCRIPT = $(install_sh) -c
|
30
|
-
INSTALL_HEADER = $(INSTALL_DATA)
|
31
|
-
transform = $(program_transform_name)
|
32
|
-
NORMAL_INSTALL = :
|
33
|
-
PRE_INSTALL = :
|
34
|
-
POST_INSTALL = :
|
35
|
-
NORMAL_UNINSTALL = :
|
36
|
-
PRE_UNINSTALL = :
|
37
|
-
POST_UNINSTALL = :
|
38
|
-
build_triplet =
|
39
|
-
host_triplet =
|
40
|
-
TESTS = template_util_unittest$(EXEEXT) type_traits_unittest$(EXEEXT) \
|
41
|
-
libc_allocator_with_realloc_test$(EXEEXT) \
|
42
|
-
sparsetable_unittest$(EXEEXT) hashtable_test$(EXEEXT) \
|
43
|
-
simple_test$(EXEEXT) simple_compat_test$(EXEEXT)
|
44
|
-
noinst_PROGRAMS = $(am__EXEEXT_1) time_hash_map$(EXEEXT)
|
45
|
-
subdir = .
|
46
|
-
DIST_COMMON = README $(am__configure_deps) $(dist_doc_DATA) \
|
47
|
-
$(googleinclude_HEADERS) $(googleinternalinclude_HEADERS) \
|
48
|
-
$(internalinclude_HEADERS) $(sparsehashinclude_HEADERS) \
|
49
|
-
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
50
|
-
$(top_srcdir)/configure $(top_srcdir)/src/config.h.in AUTHORS \
|
51
|
-
COPYING ChangeLog INSTALL NEWS TODO config.guess config.sub \
|
52
|
-
depcomp install-sh missing
|
53
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
54
|
-
am__aclocal_m4_deps = $(top_srcdir)/m4/acx_pthread.m4 \
|
55
|
-
$(top_srcdir)/m4/google_namespace.m4 \
|
56
|
-
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/stl_hash.m4 \
|
57
|
-
$(top_srcdir)/m4/stl_hash_fun.m4 $(top_srcdir)/configure.ac
|
58
|
-
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
59
|
-
$(ACLOCAL_M4)
|
60
|
-
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
61
|
-
configure.lineno config.status.lineno
|
62
|
-
mkinstalldirs = $(install_sh) -d
|
63
|
-
CONFIG_HEADER = $(top_builddir)/src/config.h
|
64
|
-
CONFIG_CLEAN_FILES =
|
65
|
-
CONFIG_CLEAN_VPATH_FILES =
|
66
|
-
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
67
|
-
am__vpath_adj = case $$p in \
|
68
|
-
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
69
|
-
*) f=$$p;; \
|
70
|
-
esac;
|
71
|
-
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
72
|
-
am__install_max = 40
|
73
|
-
am__nobase_strip_setup = \
|
74
|
-
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
75
|
-
am__nobase_strip = \
|
76
|
-
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
77
|
-
am__nobase_list = $(am__nobase_strip_setup); \
|
78
|
-
for p in $$list; do echo "$$p $$p"; done | \
|
79
|
-
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
80
|
-
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
81
|
-
if (++n[$$2] == $(am__install_max)) \
|
82
|
-
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
83
|
-
END { for (dir in files) print dir, files[dir] }'
|
84
|
-
am__base_list = \
|
85
|
-
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
86
|
-
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
87
|
-
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" \
|
88
|
-
"$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(googleincludedir)" \
|
89
|
-
"$(DESTDIR)$(googleinternalincludedir)" \
|
90
|
-
"$(DESTDIR)$(internalincludedir)" \
|
91
|
-
"$(DESTDIR)$(internalincludedir)" \
|
92
|
-
"$(DESTDIR)$(sparsehashincludedir)"
|
93
|
-
LTLIBRARIES = $(lib_LTLIBRARIES)
|
94
|
-
am__EXEEXT_1 = template_util_unittest$(EXEEXT) \
|
95
|
-
type_traits_unittest$(EXEEXT) \
|
96
|
-
libc_allocator_with_realloc_test$(EXEEXT) \
|
97
|
-
sparsetable_unittest$(EXEEXT) hashtable_test$(EXEEXT) \
|
98
|
-
simple_test$(EXEEXT) simple_compat_test$(EXEEXT)
|
99
|
-
PROGRAMS = $(noinst_PROGRAMS)
|
100
|
-
am__objects_1 =
|
101
|
-
am_hashtable_test_OBJECTS = hashtable_test.$(OBJEXT) $(am__objects_1) \
|
102
|
-
$(am__objects_1)
|
103
|
-
nodist_hashtable_test_OBJECTS = $(am__objects_1)
|
104
|
-
hashtable_test_OBJECTS = $(am_hashtable_test_OBJECTS) \
|
105
|
-
$(nodist_hashtable_test_OBJECTS)
|
106
|
-
hashtable_test_LDADD = $(LDADD)
|
107
|
-
am_libc_allocator_with_realloc_test_OBJECTS = \
|
108
|
-
libc_allocator_with_realloc_test.$(OBJEXT) $(am__objects_1)
|
109
|
-
libc_allocator_with_realloc_test_OBJECTS = \
|
110
|
-
$(am_libc_allocator_with_realloc_test_OBJECTS)
|
111
|
-
libc_allocator_with_realloc_test_LDADD = $(LDADD)
|
112
|
-
am_simple_compat_test_OBJECTS = simple_compat_test.$(OBJEXT) \
|
113
|
-
$(am__objects_1) $(am__objects_1) $(am__objects_1)
|
114
|
-
nodist_simple_compat_test_OBJECTS = $(am__objects_1)
|
115
|
-
simple_compat_test_OBJECTS = $(am_simple_compat_test_OBJECTS) \
|
116
|
-
$(nodist_simple_compat_test_OBJECTS)
|
117
|
-
simple_compat_test_LDADD = $(LDADD)
|
118
|
-
am_simple_test_OBJECTS = simple_test.$(OBJEXT) $(am__objects_1)
|
119
|
-
nodist_simple_test_OBJECTS = $(am__objects_1)
|
120
|
-
simple_test_OBJECTS = $(am_simple_test_OBJECTS) \
|
121
|
-
$(nodist_simple_test_OBJECTS)
|
122
|
-
simple_test_LDADD = $(LDADD)
|
123
|
-
am_sparsetable_unittest_OBJECTS = sparsetable_unittest.$(OBJEXT) \
|
124
|
-
$(am__objects_1)
|
125
|
-
nodist_sparsetable_unittest_OBJECTS = $(am__objects_1)
|
126
|
-
sparsetable_unittest_OBJECTS = $(am_sparsetable_unittest_OBJECTS) \
|
127
|
-
$(nodist_sparsetable_unittest_OBJECTS)
|
128
|
-
sparsetable_unittest_LDADD = $(LDADD)
|
129
|
-
am_template_util_unittest_OBJECTS = template_util_unittest.$(OBJEXT)
|
130
|
-
nodist_template_util_unittest_OBJECTS = $(am__objects_1)
|
131
|
-
template_util_unittest_OBJECTS = $(am_template_util_unittest_OBJECTS) \
|
132
|
-
$(nodist_template_util_unittest_OBJECTS)
|
133
|
-
template_util_unittest_LDADD = $(LDADD)
|
134
|
-
am_time_hash_map_OBJECTS = time_hash_map-time_hash_map.$(OBJEXT) \
|
135
|
-
$(am__objects_1) $(am__objects_1)
|
136
|
-
nodist_time_hash_map_OBJECTS = $(am__objects_1)
|
137
|
-
time_hash_map_OBJECTS = $(am_time_hash_map_OBJECTS) \
|
138
|
-
$(nodist_time_hash_map_OBJECTS)
|
139
|
-
time_hash_map_DEPENDENCIES =
|
140
|
-
time_hash_map_LINK = $(CXXLD) $(time_hash_map_CXXFLAGS) $(CXXFLAGS) \
|
141
|
-
$(time_hash_map_LDFLAGS) $(LDFLAGS) -o $@
|
142
|
-
am_type_traits_unittest_OBJECTS = type_traits_unittest.$(OBJEXT) \
|
143
|
-
$(am__objects_1)
|
144
|
-
nodist_type_traits_unittest_OBJECTS = $(am__objects_1)
|
145
|
-
type_traits_unittest_OBJECTS = $(am_type_traits_unittest_OBJECTS) \
|
146
|
-
$(nodist_type_traits_unittest_OBJECTS)
|
147
|
-
type_traits_unittest_LDADD = $(LDADD)
|
148
|
-
DEFAULT_INCLUDES = -I. -I$(top_builddir)/src
|
149
|
-
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
150
|
-
am__depfiles_maybe = depfiles
|
151
|
-
am__mv = mv -f
|
152
|
-
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
153
|
-
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
154
|
-
CXXLD = $(CXX)
|
155
|
-
CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
|
156
|
-
-o $@
|
157
|
-
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
158
|
-
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
159
|
-
CCLD = $(CC)
|
160
|
-
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
161
|
-
SOURCES = $(hashtable_test_SOURCES) $(nodist_hashtable_test_SOURCES) \
|
162
|
-
$(libc_allocator_with_realloc_test_SOURCES) \
|
163
|
-
$(simple_compat_test_SOURCES) \
|
164
|
-
$(nodist_simple_compat_test_SOURCES) $(simple_test_SOURCES) \
|
165
|
-
$(nodist_simple_test_SOURCES) $(sparsetable_unittest_SOURCES) \
|
166
|
-
$(nodist_sparsetable_unittest_SOURCES) \
|
167
|
-
$(template_util_unittest_SOURCES) \
|
168
|
-
$(nodist_template_util_unittest_SOURCES) \
|
169
|
-
$(time_hash_map_SOURCES) $(nodist_time_hash_map_SOURCES) \
|
170
|
-
$(type_traits_unittest_SOURCES) \
|
171
|
-
$(nodist_type_traits_unittest_SOURCES)
|
172
|
-
DIST_SOURCES = $(hashtable_test_SOURCES) \
|
173
|
-
$(libc_allocator_with_realloc_test_SOURCES) \
|
174
|
-
$(simple_compat_test_SOURCES) $(simple_test_SOURCES) \
|
175
|
-
$(sparsetable_unittest_SOURCES) \
|
176
|
-
$(template_util_unittest_SOURCES) $(time_hash_map_SOURCES) \
|
177
|
-
$(type_traits_unittest_SOURCES)
|
178
|
-
DATA = $(dist_doc_DATA) $(pkgconfig_DATA)
|
179
|
-
HEADERS = $(googleinclude_HEADERS) $(googleinternalinclude_HEADERS) \
|
180
|
-
$(internalinclude_HEADERS) $(nodist_internalinclude_HEADERS) \
|
181
|
-
$(sparsehashinclude_HEADERS)
|
182
|
-
ETAGS = etags
|
183
|
-
CTAGS = ctags
|
184
|
-
am__tty_colors = \
|
185
|
-
red=; grn=; lgn=; blu=; std=
|
186
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
187
|
-
distdir = $(PACKAGE)-$(VERSION)
|
188
|
-
top_distdir = $(distdir)
|
189
|
-
am__remove_distdir = \
|
190
|
-
{ test ! -d "$(distdir)" \
|
191
|
-
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
192
|
-
&& rm -fr "$(distdir)"; }; }
|
193
|
-
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).zip
|
194
|
-
GZIP_ENV = --best
|
195
|
-
distuninstallcheck_listfiles = find . -type f -print
|
196
|
-
distcleancheck_listfiles = find . -type f -print
|
197
|
-
ACLOCAL = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run aclocal-1.11
|
198
|
-
AMTAR = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run tar
|
199
|
-
AUTOCONF = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run autoconf
|
200
|
-
AUTOHEADER = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run autoheader
|
201
|
-
AUTOMAKE = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run automake-1.11
|
202
|
-
AWK = gawk
|
203
|
-
CC = gcc
|
204
|
-
CCDEPMODE = depmode=gcc3
|
205
|
-
CFLAGS = -g -O2
|
206
|
-
CPP = gcc -E
|
207
|
-
CPPFLAGS =
|
208
|
-
CXX = g++
|
209
|
-
CXXCPP = g++ -E
|
210
|
-
CXXDEPMODE = depmode=gcc3
|
211
|
-
CXXFLAGS = -g -O2
|
212
|
-
CYGPATH_W = echo
|
213
|
-
DEFS = -DHAVE_CONFIG_H
|
214
|
-
DEPDIR = .deps
|
215
|
-
ECHO_C =
|
216
|
-
ECHO_N = -n
|
217
|
-
ECHO_T =
|
218
|
-
EGREP = /usr/bin/grep -E
|
219
|
-
EXEEXT = .exe
|
220
|
-
GREP = /usr/bin/grep
|
221
|
-
INSTALL = /usr/bin/install -c
|
222
|
-
INSTALL_DATA = ${INSTALL} -m 644
|
223
|
-
INSTALL_PROGRAM = ${INSTALL}
|
224
|
-
INSTALL_SCRIPT = ${INSTALL}
|
225
|
-
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
226
|
-
LDFLAGS =
|
227
|
-
LIBOBJS =
|
228
|
-
LIBS =
|
229
|
-
LTLIBOBJS =
|
230
|
-
MAKEINFO = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/missing --run makeinfo
|
231
|
-
MKDIR_P = /usr/bin/mkdir -p
|
232
|
-
OBJEXT = o
|
233
|
-
PACKAGE = sparsehash
|
234
|
-
PACKAGE_BUGREPORT = google-sparsehash@googlegroups.com
|
235
|
-
PACKAGE_NAME = sparsehash
|
236
|
-
PACKAGE_STRING = sparsehash 2.0.2
|
237
|
-
PACKAGE_TARNAME = sparsehash
|
238
|
-
PACKAGE_URL =
|
239
|
-
PACKAGE_VERSION = 2.0.2
|
240
|
-
PATH_SEPARATOR = :
|
241
|
-
PTHREAD_CC =
|
242
|
-
PTHREAD_CFLAGS =
|
243
|
-
PTHREAD_LIBS =
|
244
|
-
SET_MAKE =
|
245
|
-
SHELL = /bin/sh
|
246
|
-
STRIP =
|
247
|
-
VERSION = 2.0.2
|
248
|
-
abs_builddir = /c/dev/ruby/google_hash/ext/sparsehash-2.0.2
|
249
|
-
abs_srcdir = /c/dev/ruby/google_hash/ext/sparsehash-2.0.2
|
250
|
-
abs_top_builddir = /c/dev/ruby/google_hash/ext/sparsehash-2.0.2
|
251
|
-
abs_top_srcdir = /c/dev/ruby/google_hash/ext/sparsehash-2.0.2
|
252
|
-
ac_ct_CC = gcc
|
253
|
-
ac_ct_CXX = g++
|
254
|
-
acx_pthread_config =
|
255
|
-
am__include = include
|
256
|
-
am__leading_dot = .
|
257
|
-
am__quote =
|
258
|
-
am__tar = ${AMTAR} chof - "$$tardir"
|
259
|
-
am__untar = ${AMTAR} xf -
|
260
|
-
bindir = ${exec_prefix}/bin
|
261
|
-
build =
|
262
|
-
build_alias =
|
263
|
-
build_cpu =
|
264
|
-
build_os =
|
265
|
-
build_vendor =
|
266
|
-
builddir = .
|
267
|
-
datadir = ${datarootdir}
|
268
|
-
datarootdir = ${prefix}/share
|
269
|
-
docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
|
270
|
-
dvidir = ${docdir}
|
271
|
-
exec_prefix = ${prefix}
|
272
|
-
host =
|
273
|
-
host_alias =
|
274
|
-
host_cpu =
|
275
|
-
host_os =
|
276
|
-
host_vendor =
|
277
|
-
htmldir = ${docdir}
|
278
|
-
includedir = ${prefix}/include
|
279
|
-
infodir = ${datarootdir}/info
|
280
|
-
install_sh = ${SHELL} /c/dev/ruby/google_hash/ext/sparsehash-2.0.2/install-sh
|
281
|
-
libdir = ${exec_prefix}/lib
|
282
|
-
libexecdir = ${exec_prefix}/libexec
|
283
|
-
localedir = ${datarootdir}/locale
|
284
|
-
localstatedir = ${prefix}/var
|
285
|
-
mandir = ${datarootdir}/man
|
286
|
-
mkdir_p = /usr/bin/mkdir -p
|
287
|
-
oldincludedir = /usr/include
|
288
|
-
pdfdir = ${docdir}
|
289
|
-
prefix = C:/dev/ruby/google_hash/ext/local_installed
|
290
|
-
program_transform_name = s,x,x,
|
291
|
-
psdir = ${docdir}
|
292
|
-
sbindir = ${exec_prefix}/sbin
|
293
|
-
sharedstatedir = ${prefix}/com
|
294
|
-
srcdir = .
|
295
|
-
sysconfdir = ${prefix}/etc
|
296
|
-
target_alias =
|
297
|
-
tcmalloc_flags =
|
298
|
-
tcmalloc_libs =
|
299
|
-
top_build_prefix =
|
300
|
-
top_builddir = .
|
301
|
-
top_srcdir = .
|
302
|
-
|
303
|
-
# Make sure that when we re-make ./configure, we get the macros we need
|
304
|
-
ACLOCAL_AMFLAGS = -I m4
|
305
|
-
|
306
|
-
# This is so we can #include <sparsehash/foo>
|
307
|
-
AM_CPPFLAGS = -I$(top_srcdir)/src
|
308
|
-
|
309
|
-
# These are good warnings to turn on by default
|
310
|
-
AM_CXXFLAGS = -Wall -W -Wwrite-strings -Woverloaded-virtual -Wshadow
|
311
|
-
dist_doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README README_windows.txt \
|
312
|
-
TODO \
|
313
|
-
doc/dense_hash_map.html \
|
314
|
-
doc/dense_hash_set.html \
|
315
|
-
doc/sparse_hash_map.html \
|
316
|
-
doc/sparse_hash_set.html \
|
317
|
-
doc/sparsetable.html \
|
318
|
-
doc/implementation.html \
|
319
|
-
doc/performance.html \
|
320
|
-
doc/index.html \
|
321
|
-
doc/designstyle.css
|
322
|
-
|
323
|
-
lib_LTLIBRARIES =
|
324
|
-
WINDOWS_PROJECTS = sparsehash.sln \
|
325
|
-
vsprojects/time_hash_map/time_hash_map.vcproj \
|
326
|
-
vsprojects/type_traits_unittest/type_traits_unittest.vcproj \
|
327
|
-
vsprojects/libc_allocator_with_realloc_test/libc_allocator_with_realloc_test.vcproj \
|
328
|
-
vsprojects/sparsetable_unittest/sparsetable_unittest.vcproj \
|
329
|
-
vsprojects/hashtable_test/hashtable_test.vcproj \
|
330
|
-
vsprojects/simple_test/simple_test.vcproj
|
331
|
-
check_SCRIPTS =
|
332
|
-
TESTS_ENVIRONMENT =
|
333
|
-
# This is how we tell automake about auto-generated .h files
|
334
|
-
BUILT_SOURCES = src/sparsehash/internal/sparseconfig.h
|
335
|
-
CLEANFILES = src/sparsehash/internal/sparseconfig.h $(pkgconfig_DATA)
|
336
|
-
sparsehashincludedir = $(includedir)/sparsehash
|
337
|
-
sparsehashinclude_HEADERS = \
|
338
|
-
src/sparsehash/dense_hash_map \
|
339
|
-
src/sparsehash/dense_hash_set \
|
340
|
-
src/sparsehash/sparse_hash_map \
|
341
|
-
src/sparsehash/sparse_hash_set \
|
342
|
-
src/sparsehash/sparsetable \
|
343
|
-
src/sparsehash/template_util.h \
|
344
|
-
src/sparsehash/type_traits.h
|
345
|
-
|
346
|
-
internalincludedir = $(sparsehashincludedir)/internal
|
347
|
-
internalinclude_HEADERS = \
|
348
|
-
src/sparsehash/internal/densehashtable.h \
|
349
|
-
src/sparsehash/internal/sparsehashtable.h \
|
350
|
-
src/sparsehash/internal/hashtable-common.h \
|
351
|
-
src/sparsehash/internal/libc_allocator_with_realloc.h
|
352
|
-
|
353
|
-
nodist_internalinclude_HEADERS = src/sparsehash/internal/sparseconfig.h
|
354
|
-
|
355
|
-
# This is for backwards compatibility only.
|
356
|
-
googleincludedir = $(includedir)/google
|
357
|
-
googleinclude_HEADERS = \
|
358
|
-
src/google/dense_hash_map \
|
359
|
-
src/google/dense_hash_set \
|
360
|
-
src/google/sparse_hash_map \
|
361
|
-
src/google/sparse_hash_set \
|
362
|
-
src/google/sparsetable \
|
363
|
-
src/google/template_util.h \
|
364
|
-
src/google/type_traits.h
|
365
|
-
|
366
|
-
googleinternalincludedir = $(includedir)/google/sparsehash
|
367
|
-
googleinternalinclude_HEADERS = \
|
368
|
-
src/google/sparsehash/densehashtable.h \
|
369
|
-
src/google/sparsehash/sparsehashtable.h \
|
370
|
-
src/google/sparsehash/hashtable-common.h \
|
371
|
-
src/google/sparsehash/libc_allocator_with_realloc.h
|
372
|
-
|
373
|
-
# TODO(csilvers): Update windows projects for template_util_unittest.
|
374
|
-
# WINDOWS_PROJECTS += vsprojects/template_util_unittest/template_util_unittest.vcproj
|
375
|
-
template_util_unittest_SOURCES = \
|
376
|
-
src/template_util_unittest.cc \
|
377
|
-
src/sparsehash/template_util.h
|
378
|
-
|
379
|
-
nodist_template_util_unittest_SOURCES = $(nodist_internalinclude_HEADERS)
|
380
|
-
type_traits_unittest_SOURCES = \
|
381
|
-
src/type_traits_unittest.cc \
|
382
|
-
$(internalinclude_HEADERS) \
|
383
|
-
src/sparsehash/type_traits.h
|
384
|
-
|
385
|
-
nodist_type_traits_unittest_SOURCES = $(nodist_internalinclude_HEADERS)
|
386
|
-
libc_allocator_with_realloc_test_SOURCES = \
|
387
|
-
src/libc_allocator_with_realloc_test.cc \
|
388
|
-
$(internalinclude_HEADERS) \
|
389
|
-
src/sparsehash/internal/libc_allocator_with_realloc.h
|
390
|
-
|
391
|
-
sparsetable_unittest_SOURCES = \
|
392
|
-
src/sparsetable_unittest.cc \
|
393
|
-
$(internalinclude_HEADERS) \
|
394
|
-
src/sparsehash/sparsetable
|
395
|
-
|
396
|
-
nodist_sparsetable_unittest_SOURCES = $(nodist_internalinclude_HEADERS)
|
397
|
-
hashtable_test_SOURCES = \
|
398
|
-
src/hashtable_test.cc \
|
399
|
-
src/hash_test_interface.h \
|
400
|
-
src/testutil.h \
|
401
|
-
$(sparsehashinclude_HEADERS) \
|
402
|
-
$(internalinclude_HEADERS)
|
403
|
-
|
404
|
-
nodist_hashtable_test_SOURCES = $(nodist_internalinclude_HEADERS)
|
405
|
-
simple_test_SOURCES = \
|
406
|
-
src/simple_test.cc \
|
407
|
-
$(internalinclude_HEADERS)
|
408
|
-
|
409
|
-
nodist_simple_test_SOURCES = $(nodist_internalinclude_HEADERS)
|
410
|
-
simple_compat_test_SOURCES = \
|
411
|
-
src/simple_compat_test.cc \
|
412
|
-
$(internalinclude_HEADERS) \
|
413
|
-
$(googleinclude_HEADERS) \
|
414
|
-
$(googleinternalinclude_HEADERS)
|
415
|
-
|
416
|
-
nodist_simple_compat_test_SOURCES = $(nodist_internalinclude_HEADERS)
|
417
|
-
time_hash_map_SOURCES = \
|
418
|
-
src/time_hash_map.cc \
|
419
|
-
$(internalinclude_HEADERS) \
|
420
|
-
$(sparsehashinclude_HEADERS)
|
421
|
-
|
422
|
-
nodist_time_hash_map_SOURCES = $(nodist_internalinclude_HEADERS)
|
423
|
-
|
424
|
-
# If tcmalloc is installed, use it with time_hash_map; it gives us
|
425
|
-
# heap-usage statistics for the hash_map routines, which is very nice
|
426
|
-
time_hash_map_CXXFLAGS = $(AM_CXXFLAGS)
|
427
|
-
time_hash_map_LDFLAGS =
|
428
|
-
time_hash_map_LDADD =
|
429
|
-
|
430
|
-
# http://linux.die.net/man/1/pkg-config, http://pkg-config.freedesktop.org/wiki
|
431
|
-
pkgconfigdir = $(libdir)/pkgconfig
|
432
|
-
pkgconfig_DATA = lib${PACKAGE}.pc
|
433
|
-
EXTRA_DIST = packages/rpm.sh packages/rpm/rpm.spec packages/deb.sh packages/deb \
|
434
|
-
src/config.h.include src/windows $(WINDOWS_PROJECTS) experimental
|
435
|
-
|
436
|
-
all: $(BUILT_SOURCES)
|
437
|
-
$(MAKE) $(AM_MAKEFLAGS) all-am
|
438
|
-
|
439
|
-
.SUFFIXES:
|
440
|
-
.SUFFIXES: .cc .o .obj
|
441
|
-
am--refresh:
|
442
|
-
@:
|
443
|
-
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
444
|
-
@for dep in $?; do \
|
445
|
-
case '$(am__configure_deps)' in \
|
446
|
-
*$$dep*) \
|
447
|
-
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
448
|
-
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
449
|
-
&& exit 0; \
|
450
|
-
exit 1;; \
|
451
|
-
esac; \
|
452
|
-
done; \
|
453
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
454
|
-
$(am__cd) $(top_srcdir) && \
|
455
|
-
$(AUTOMAKE) --gnu Makefile
|
456
|
-
.PRECIOUS: Makefile
|
457
|
-
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
458
|
-
@case '$?' in \
|
459
|
-
*config.status*) \
|
460
|
-
echo ' $(SHELL) ./config.status'; \
|
461
|
-
$(SHELL) ./config.status;; \
|
462
|
-
*) \
|
463
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
464
|
-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
465
|
-
esac;
|
466
|
-
|
467
|
-
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
468
|
-
$(SHELL) ./config.status --recheck
|
469
|
-
|
470
|
-
$(top_srcdir)/configure: $(am__configure_deps)
|
471
|
-
$(am__cd) $(srcdir) && $(AUTOCONF)
|
472
|
-
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
473
|
-
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
474
|
-
$(am__aclocal_m4_deps):
|
475
|
-
|
476
|
-
src/config.h: src/stamp-h1
|
477
|
-
@if test ! -f $@; then \
|
478
|
-
rm -f src/stamp-h1; \
|
479
|
-
$(MAKE) $(AM_MAKEFLAGS) src/stamp-h1; \
|
480
|
-
else :; fi
|
481
|
-
|
482
|
-
src/stamp-h1: $(top_srcdir)/src/config.h.in $(top_builddir)/config.status
|
483
|
-
@rm -f src/stamp-h1
|
484
|
-
cd $(top_builddir) && $(SHELL) ./config.status src/config.h
|
485
|
-
$(top_srcdir)/src/config.h.in: $(am__configure_deps)
|
486
|
-
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
487
|
-
rm -f src/stamp-h1
|
488
|
-
touch $@
|
489
|
-
|
490
|
-
distclean-hdr:
|
491
|
-
-rm -f src/config.h src/stamp-h1
|
492
|
-
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
493
|
-
@$(NORMAL_INSTALL)
|
494
|
-
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
495
|
-
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
496
|
-
list2=; for p in $$list; do \
|
497
|
-
if test -f $$p; then \
|
498
|
-
list2="$$list2 $$p"; \
|
499
|
-
else :; fi; \
|
500
|
-
done; \
|
501
|
-
test -z "$$list2" || { \
|
502
|
-
echo " $(INSTALL) $(INSTALL_STRIP_FLAG) $$list '$(DESTDIR)$(libdir)'"; \
|
503
|
-
$(INSTALL) $(INSTALL_STRIP_FLAG) $$list "$(DESTDIR)$(libdir)"; \
|
504
|
-
}
|
505
|
-
|
506
|
-
uninstall-libLTLIBRARIES:
|
507
|
-
@$(NORMAL_UNINSTALL)
|
508
|
-
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
509
|
-
for p in $$list; do \
|
510
|
-
$(am__strip_dir) \
|
511
|
-
echo " rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
512
|
-
rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
513
|
-
done
|
514
|
-
|
515
|
-
clean-libLTLIBRARIES:
|
516
|
-
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
517
|
-
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
518
|
-
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
519
|
-
test "$$dir" != "$$p" || dir=.; \
|
520
|
-
echo "rm -f \"$${dir}/so_locations\""; \
|
521
|
-
rm -f "$${dir}/so_locations"; \
|
522
|
-
done
|
523
|
-
|
524
|
-
clean-noinstPROGRAMS:
|
525
|
-
-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
|
526
|
-
hashtable_test$(EXEEXT): $(hashtable_test_OBJECTS) $(hashtable_test_DEPENDENCIES)
|
527
|
-
@rm -f hashtable_test$(EXEEXT)
|
528
|
-
$(CXXLINK) $(hashtable_test_OBJECTS) $(hashtable_test_LDADD) $(LIBS)
|
529
|
-
libc_allocator_with_realloc_test$(EXEEXT): $(libc_allocator_with_realloc_test_OBJECTS) $(libc_allocator_with_realloc_test_DEPENDENCIES)
|
530
|
-
@rm -f libc_allocator_with_realloc_test$(EXEEXT)
|
531
|
-
$(CXXLINK) $(libc_allocator_with_realloc_test_OBJECTS) $(libc_allocator_with_realloc_test_LDADD) $(LIBS)
|
532
|
-
simple_compat_test$(EXEEXT): $(simple_compat_test_OBJECTS) $(simple_compat_test_DEPENDENCIES)
|
533
|
-
@rm -f simple_compat_test$(EXEEXT)
|
534
|
-
$(CXXLINK) $(simple_compat_test_OBJECTS) $(simple_compat_test_LDADD) $(LIBS)
|
535
|
-
simple_test$(EXEEXT): $(simple_test_OBJECTS) $(simple_test_DEPENDENCIES)
|
536
|
-
@rm -f simple_test$(EXEEXT)
|
537
|
-
$(CXXLINK) $(simple_test_OBJECTS) $(simple_test_LDADD) $(LIBS)
|
538
|
-
sparsetable_unittest$(EXEEXT): $(sparsetable_unittest_OBJECTS) $(sparsetable_unittest_DEPENDENCIES)
|
539
|
-
@rm -f sparsetable_unittest$(EXEEXT)
|
540
|
-
$(CXXLINK) $(sparsetable_unittest_OBJECTS) $(sparsetable_unittest_LDADD) $(LIBS)
|
541
|
-
template_util_unittest$(EXEEXT): $(template_util_unittest_OBJECTS) $(template_util_unittest_DEPENDENCIES)
|
542
|
-
@rm -f template_util_unittest$(EXEEXT)
|
543
|
-
$(CXXLINK) $(template_util_unittest_OBJECTS) $(template_util_unittest_LDADD) $(LIBS)
|
544
|
-
time_hash_map$(EXEEXT): $(time_hash_map_OBJECTS) $(time_hash_map_DEPENDENCIES)
|
545
|
-
@rm -f time_hash_map$(EXEEXT)
|
546
|
-
$(time_hash_map_LINK) $(time_hash_map_OBJECTS) $(time_hash_map_LDADD) $(LIBS)
|
547
|
-
type_traits_unittest$(EXEEXT): $(type_traits_unittest_OBJECTS) $(type_traits_unittest_DEPENDENCIES)
|
548
|
-
@rm -f type_traits_unittest$(EXEEXT)
|
549
|
-
$(CXXLINK) $(type_traits_unittest_OBJECTS) $(type_traits_unittest_LDADD) $(LIBS)
|
550
|
-
|
551
|
-
mostlyclean-compile:
|
552
|
-
-rm -f *.$(OBJEXT)
|
553
|
-
|
554
|
-
distclean-compile:
|
555
|
-
-rm -f *.tab.c
|
556
|
-
|
557
|
-
include ./$(DEPDIR)/hashtable_test.Po
|
558
|
-
include ./$(DEPDIR)/libc_allocator_with_realloc_test.Po
|
559
|
-
include ./$(DEPDIR)/simple_compat_test.Po
|
560
|
-
include ./$(DEPDIR)/simple_test.Po
|
561
|
-
include ./$(DEPDIR)/sparsetable_unittest.Po
|
562
|
-
include ./$(DEPDIR)/template_util_unittest.Po
|
563
|
-
include ./$(DEPDIR)/time_hash_map-time_hash_map.Po
|
564
|
-
include ./$(DEPDIR)/type_traits_unittest.Po
|
565
|
-
|
566
|
-
.cc.o:
|
567
|
-
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
568
|
-
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
569
|
-
# source='$<' object='$@' libtool=no \
|
570
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
571
|
-
# $(CXXCOMPILE) -c -o $@ $<
|
572
|
-
|
573
|
-
.cc.obj:
|
574
|
-
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
575
|
-
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
576
|
-
# source='$<' object='$@' libtool=no \
|
577
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
578
|
-
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
579
|
-
|
580
|
-
hashtable_test.o: src/hashtable_test.cc
|
581
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT hashtable_test.o -MD -MP -MF $(DEPDIR)/hashtable_test.Tpo -c -o hashtable_test.o `test -f 'src/hashtable_test.cc' || echo '$(srcdir)/'`src/hashtable_test.cc
|
582
|
-
$(am__mv) $(DEPDIR)/hashtable_test.Tpo $(DEPDIR)/hashtable_test.Po
|
583
|
-
# source='src/hashtable_test.cc' object='hashtable_test.o' libtool=no \
|
584
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
585
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o hashtable_test.o `test -f 'src/hashtable_test.cc' || echo '$(srcdir)/'`src/hashtable_test.cc
|
586
|
-
|
587
|
-
hashtable_test.obj: src/hashtable_test.cc
|
588
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT hashtable_test.obj -MD -MP -MF $(DEPDIR)/hashtable_test.Tpo -c -o hashtable_test.obj `if test -f 'src/hashtable_test.cc'; then $(CYGPATH_W) 'src/hashtable_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/hashtable_test.cc'; fi`
|
589
|
-
$(am__mv) $(DEPDIR)/hashtable_test.Tpo $(DEPDIR)/hashtable_test.Po
|
590
|
-
# source='src/hashtable_test.cc' object='hashtable_test.obj' libtool=no \
|
591
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
592
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o hashtable_test.obj `if test -f 'src/hashtable_test.cc'; then $(CYGPATH_W) 'src/hashtable_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/hashtable_test.cc'; fi`
|
593
|
-
|
594
|
-
libc_allocator_with_realloc_test.o: src/libc_allocator_with_realloc_test.cc
|
595
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libc_allocator_with_realloc_test.o -MD -MP -MF $(DEPDIR)/libc_allocator_with_realloc_test.Tpo -c -o libc_allocator_with_realloc_test.o `test -f 'src/libc_allocator_with_realloc_test.cc' || echo '$(srcdir)/'`src/libc_allocator_with_realloc_test.cc
|
596
|
-
$(am__mv) $(DEPDIR)/libc_allocator_with_realloc_test.Tpo $(DEPDIR)/libc_allocator_with_realloc_test.Po
|
597
|
-
# source='src/libc_allocator_with_realloc_test.cc' object='libc_allocator_with_realloc_test.o' libtool=no \
|
598
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
599
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libc_allocator_with_realloc_test.o `test -f 'src/libc_allocator_with_realloc_test.cc' || echo '$(srcdir)/'`src/libc_allocator_with_realloc_test.cc
|
600
|
-
|
601
|
-
libc_allocator_with_realloc_test.obj: src/libc_allocator_with_realloc_test.cc
|
602
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libc_allocator_with_realloc_test.obj -MD -MP -MF $(DEPDIR)/libc_allocator_with_realloc_test.Tpo -c -o libc_allocator_with_realloc_test.obj `if test -f 'src/libc_allocator_with_realloc_test.cc'; then $(CYGPATH_W) 'src/libc_allocator_with_realloc_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/libc_allocator_with_realloc_test.cc'; fi`
|
603
|
-
$(am__mv) $(DEPDIR)/libc_allocator_with_realloc_test.Tpo $(DEPDIR)/libc_allocator_with_realloc_test.Po
|
604
|
-
# source='src/libc_allocator_with_realloc_test.cc' object='libc_allocator_with_realloc_test.obj' libtool=no \
|
605
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
606
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libc_allocator_with_realloc_test.obj `if test -f 'src/libc_allocator_with_realloc_test.cc'; then $(CYGPATH_W) 'src/libc_allocator_with_realloc_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/libc_allocator_with_realloc_test.cc'; fi`
|
607
|
-
|
608
|
-
simple_compat_test.o: src/simple_compat_test.cc
|
609
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_compat_test.o -MD -MP -MF $(DEPDIR)/simple_compat_test.Tpo -c -o simple_compat_test.o `test -f 'src/simple_compat_test.cc' || echo '$(srcdir)/'`src/simple_compat_test.cc
|
610
|
-
$(am__mv) $(DEPDIR)/simple_compat_test.Tpo $(DEPDIR)/simple_compat_test.Po
|
611
|
-
# source='src/simple_compat_test.cc' object='simple_compat_test.o' libtool=no \
|
612
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
613
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_compat_test.o `test -f 'src/simple_compat_test.cc' || echo '$(srcdir)/'`src/simple_compat_test.cc
|
614
|
-
|
615
|
-
simple_compat_test.obj: src/simple_compat_test.cc
|
616
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_compat_test.obj -MD -MP -MF $(DEPDIR)/simple_compat_test.Tpo -c -o simple_compat_test.obj `if test -f 'src/simple_compat_test.cc'; then $(CYGPATH_W) 'src/simple_compat_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/simple_compat_test.cc'; fi`
|
617
|
-
$(am__mv) $(DEPDIR)/simple_compat_test.Tpo $(DEPDIR)/simple_compat_test.Po
|
618
|
-
# source='src/simple_compat_test.cc' object='simple_compat_test.obj' libtool=no \
|
619
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
620
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_compat_test.obj `if test -f 'src/simple_compat_test.cc'; then $(CYGPATH_W) 'src/simple_compat_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/simple_compat_test.cc'; fi`
|
621
|
-
|
622
|
-
simple_test.o: src/simple_test.cc
|
623
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_test.o -MD -MP -MF $(DEPDIR)/simple_test.Tpo -c -o simple_test.o `test -f 'src/simple_test.cc' || echo '$(srcdir)/'`src/simple_test.cc
|
624
|
-
$(am__mv) $(DEPDIR)/simple_test.Tpo $(DEPDIR)/simple_test.Po
|
625
|
-
# source='src/simple_test.cc' object='simple_test.o' libtool=no \
|
626
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
627
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_test.o `test -f 'src/simple_test.cc' || echo '$(srcdir)/'`src/simple_test.cc
|
628
|
-
|
629
|
-
simple_test.obj: src/simple_test.cc
|
630
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_test.obj -MD -MP -MF $(DEPDIR)/simple_test.Tpo -c -o simple_test.obj `if test -f 'src/simple_test.cc'; then $(CYGPATH_W) 'src/simple_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/simple_test.cc'; fi`
|
631
|
-
$(am__mv) $(DEPDIR)/simple_test.Tpo $(DEPDIR)/simple_test.Po
|
632
|
-
# source='src/simple_test.cc' object='simple_test.obj' libtool=no \
|
633
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
634
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_test.obj `if test -f 'src/simple_test.cc'; then $(CYGPATH_W) 'src/simple_test.cc'; else $(CYGPATH_W) '$(srcdir)/src/simple_test.cc'; fi`
|
635
|
-
|
636
|
-
sparsetable_unittest.o: src/sparsetable_unittest.cc
|
637
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sparsetable_unittest.o -MD -MP -MF $(DEPDIR)/sparsetable_unittest.Tpo -c -o sparsetable_unittest.o `test -f 'src/sparsetable_unittest.cc' || echo '$(srcdir)/'`src/sparsetable_unittest.cc
|
638
|
-
$(am__mv) $(DEPDIR)/sparsetable_unittest.Tpo $(DEPDIR)/sparsetable_unittest.Po
|
639
|
-
# source='src/sparsetable_unittest.cc' object='sparsetable_unittest.o' libtool=no \
|
640
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
641
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sparsetable_unittest.o `test -f 'src/sparsetable_unittest.cc' || echo '$(srcdir)/'`src/sparsetable_unittest.cc
|
642
|
-
|
643
|
-
sparsetable_unittest.obj: src/sparsetable_unittest.cc
|
644
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sparsetable_unittest.obj -MD -MP -MF $(DEPDIR)/sparsetable_unittest.Tpo -c -o sparsetable_unittest.obj `if test -f 'src/sparsetable_unittest.cc'; then $(CYGPATH_W) 'src/sparsetable_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/sparsetable_unittest.cc'; fi`
|
645
|
-
$(am__mv) $(DEPDIR)/sparsetable_unittest.Tpo $(DEPDIR)/sparsetable_unittest.Po
|
646
|
-
# source='src/sparsetable_unittest.cc' object='sparsetable_unittest.obj' libtool=no \
|
647
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
648
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sparsetable_unittest.obj `if test -f 'src/sparsetable_unittest.cc'; then $(CYGPATH_W) 'src/sparsetable_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/sparsetable_unittest.cc'; fi`
|
649
|
-
|
650
|
-
template_util_unittest.o: src/template_util_unittest.cc
|
651
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT template_util_unittest.o -MD -MP -MF $(DEPDIR)/template_util_unittest.Tpo -c -o template_util_unittest.o `test -f 'src/template_util_unittest.cc' || echo '$(srcdir)/'`src/template_util_unittest.cc
|
652
|
-
$(am__mv) $(DEPDIR)/template_util_unittest.Tpo $(DEPDIR)/template_util_unittest.Po
|
653
|
-
# source='src/template_util_unittest.cc' object='template_util_unittest.o' libtool=no \
|
654
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
655
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o template_util_unittest.o `test -f 'src/template_util_unittest.cc' || echo '$(srcdir)/'`src/template_util_unittest.cc
|
656
|
-
|
657
|
-
template_util_unittest.obj: src/template_util_unittest.cc
|
658
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT template_util_unittest.obj -MD -MP -MF $(DEPDIR)/template_util_unittest.Tpo -c -o template_util_unittest.obj `if test -f 'src/template_util_unittest.cc'; then $(CYGPATH_W) 'src/template_util_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/template_util_unittest.cc'; fi`
|
659
|
-
$(am__mv) $(DEPDIR)/template_util_unittest.Tpo $(DEPDIR)/template_util_unittest.Po
|
660
|
-
# source='src/template_util_unittest.cc' object='template_util_unittest.obj' libtool=no \
|
661
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
662
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o template_util_unittest.obj `if test -f 'src/template_util_unittest.cc'; then $(CYGPATH_W) 'src/template_util_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/template_util_unittest.cc'; fi`
|
663
|
-
|
664
|
-
time_hash_map-time_hash_map.o: src/time_hash_map.cc
|
665
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(time_hash_map_CXXFLAGS) $(CXXFLAGS) -MT time_hash_map-time_hash_map.o -MD -MP -MF $(DEPDIR)/time_hash_map-time_hash_map.Tpo -c -o time_hash_map-time_hash_map.o `test -f 'src/time_hash_map.cc' || echo '$(srcdir)/'`src/time_hash_map.cc
|
666
|
-
$(am__mv) $(DEPDIR)/time_hash_map-time_hash_map.Tpo $(DEPDIR)/time_hash_map-time_hash_map.Po
|
667
|
-
# source='src/time_hash_map.cc' object='time_hash_map-time_hash_map.o' libtool=no \
|
668
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
669
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(time_hash_map_CXXFLAGS) $(CXXFLAGS) -c -o time_hash_map-time_hash_map.o `test -f 'src/time_hash_map.cc' || echo '$(srcdir)/'`src/time_hash_map.cc
|
670
|
-
|
671
|
-
time_hash_map-time_hash_map.obj: src/time_hash_map.cc
|
672
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(time_hash_map_CXXFLAGS) $(CXXFLAGS) -MT time_hash_map-time_hash_map.obj -MD -MP -MF $(DEPDIR)/time_hash_map-time_hash_map.Tpo -c -o time_hash_map-time_hash_map.obj `if test -f 'src/time_hash_map.cc'; then $(CYGPATH_W) 'src/time_hash_map.cc'; else $(CYGPATH_W) '$(srcdir)/src/time_hash_map.cc'; fi`
|
673
|
-
$(am__mv) $(DEPDIR)/time_hash_map-time_hash_map.Tpo $(DEPDIR)/time_hash_map-time_hash_map.Po
|
674
|
-
# source='src/time_hash_map.cc' object='time_hash_map-time_hash_map.obj' libtool=no \
|
675
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
676
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(time_hash_map_CXXFLAGS) $(CXXFLAGS) -c -o time_hash_map-time_hash_map.obj `if test -f 'src/time_hash_map.cc'; then $(CYGPATH_W) 'src/time_hash_map.cc'; else $(CYGPATH_W) '$(srcdir)/src/time_hash_map.cc'; fi`
|
677
|
-
|
678
|
-
type_traits_unittest.o: src/type_traits_unittest.cc
|
679
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT type_traits_unittest.o -MD -MP -MF $(DEPDIR)/type_traits_unittest.Tpo -c -o type_traits_unittest.o `test -f 'src/type_traits_unittest.cc' || echo '$(srcdir)/'`src/type_traits_unittest.cc
|
680
|
-
$(am__mv) $(DEPDIR)/type_traits_unittest.Tpo $(DEPDIR)/type_traits_unittest.Po
|
681
|
-
# source='src/type_traits_unittest.cc' object='type_traits_unittest.o' libtool=no \
|
682
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
683
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o type_traits_unittest.o `test -f 'src/type_traits_unittest.cc' || echo '$(srcdir)/'`src/type_traits_unittest.cc
|
684
|
-
|
685
|
-
type_traits_unittest.obj: src/type_traits_unittest.cc
|
686
|
-
$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT type_traits_unittest.obj -MD -MP -MF $(DEPDIR)/type_traits_unittest.Tpo -c -o type_traits_unittest.obj `if test -f 'src/type_traits_unittest.cc'; then $(CYGPATH_W) 'src/type_traits_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/type_traits_unittest.cc'; fi`
|
687
|
-
$(am__mv) $(DEPDIR)/type_traits_unittest.Tpo $(DEPDIR)/type_traits_unittest.Po
|
688
|
-
# source='src/type_traits_unittest.cc' object='type_traits_unittest.obj' libtool=no \
|
689
|
-
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
690
|
-
# $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o type_traits_unittest.obj `if test -f 'src/type_traits_unittest.cc'; then $(CYGPATH_W) 'src/type_traits_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/type_traits_unittest.cc'; fi`
|
691
|
-
install-dist_docDATA: $(dist_doc_DATA)
|
692
|
-
@$(NORMAL_INSTALL)
|
693
|
-
test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"
|
694
|
-
@list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
|
695
|
-
for p in $$list; do \
|
696
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
697
|
-
echo "$$d$$p"; \
|
698
|
-
done | $(am__base_list) | \
|
699
|
-
while read files; do \
|
700
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
|
701
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
|
702
|
-
done
|
703
|
-
|
704
|
-
uninstall-dist_docDATA:
|
705
|
-
@$(NORMAL_UNINSTALL)
|
706
|
-
@list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
|
707
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
708
|
-
test -n "$$files" || exit 0; \
|
709
|
-
echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \
|
710
|
-
cd "$(DESTDIR)$(docdir)" && rm -f $$files
|
711
|
-
install-pkgconfigDATA: $(pkgconfig_DATA)
|
712
|
-
@$(NORMAL_INSTALL)
|
713
|
-
test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
|
714
|
-
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
715
|
-
for p in $$list; do \
|
716
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
717
|
-
echo "$$d$$p"; \
|
718
|
-
done | $(am__base_list) | \
|
719
|
-
while read files; do \
|
720
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
721
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
722
|
-
done
|
723
|
-
|
724
|
-
uninstall-pkgconfigDATA:
|
725
|
-
@$(NORMAL_UNINSTALL)
|
726
|
-
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
727
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
728
|
-
test -n "$$files" || exit 0; \
|
729
|
-
echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
|
730
|
-
cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
|
731
|
-
install-googleincludeHEADERS: $(googleinclude_HEADERS)
|
732
|
-
@$(NORMAL_INSTALL)
|
733
|
-
test -z "$(googleincludedir)" || $(MKDIR_P) "$(DESTDIR)$(googleincludedir)"
|
734
|
-
@list='$(googleinclude_HEADERS)'; test -n "$(googleincludedir)" || list=; \
|
735
|
-
for p in $$list; do \
|
736
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
737
|
-
echo "$$d$$p"; \
|
738
|
-
done | $(am__base_list) | \
|
739
|
-
while read files; do \
|
740
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(googleincludedir)'"; \
|
741
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(googleincludedir)" || exit $$?; \
|
742
|
-
done
|
743
|
-
|
744
|
-
uninstall-googleincludeHEADERS:
|
745
|
-
@$(NORMAL_UNINSTALL)
|
746
|
-
@list='$(googleinclude_HEADERS)'; test -n "$(googleincludedir)" || list=; \
|
747
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
748
|
-
test -n "$$files" || exit 0; \
|
749
|
-
echo " ( cd '$(DESTDIR)$(googleincludedir)' && rm -f" $$files ")"; \
|
750
|
-
cd "$(DESTDIR)$(googleincludedir)" && rm -f $$files
|
751
|
-
install-googleinternalincludeHEADERS: $(googleinternalinclude_HEADERS)
|
752
|
-
@$(NORMAL_INSTALL)
|
753
|
-
test -z "$(googleinternalincludedir)" || $(MKDIR_P) "$(DESTDIR)$(googleinternalincludedir)"
|
754
|
-
@list='$(googleinternalinclude_HEADERS)'; test -n "$(googleinternalincludedir)" || list=; \
|
755
|
-
for p in $$list; do \
|
756
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
757
|
-
echo "$$d$$p"; \
|
758
|
-
done | $(am__base_list) | \
|
759
|
-
while read files; do \
|
760
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(googleinternalincludedir)'"; \
|
761
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(googleinternalincludedir)" || exit $$?; \
|
762
|
-
done
|
763
|
-
|
764
|
-
uninstall-googleinternalincludeHEADERS:
|
765
|
-
@$(NORMAL_UNINSTALL)
|
766
|
-
@list='$(googleinternalinclude_HEADERS)'; test -n "$(googleinternalincludedir)" || list=; \
|
767
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
768
|
-
test -n "$$files" || exit 0; \
|
769
|
-
echo " ( cd '$(DESTDIR)$(googleinternalincludedir)' && rm -f" $$files ")"; \
|
770
|
-
cd "$(DESTDIR)$(googleinternalincludedir)" && rm -f $$files
|
771
|
-
install-internalincludeHEADERS: $(internalinclude_HEADERS)
|
772
|
-
@$(NORMAL_INSTALL)
|
773
|
-
test -z "$(internalincludedir)" || $(MKDIR_P) "$(DESTDIR)$(internalincludedir)"
|
774
|
-
@list='$(internalinclude_HEADERS)'; test -n "$(internalincludedir)" || list=; \
|
775
|
-
for p in $$list; do \
|
776
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
777
|
-
echo "$$d$$p"; \
|
778
|
-
done | $(am__base_list) | \
|
779
|
-
while read files; do \
|
780
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(internalincludedir)'"; \
|
781
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(internalincludedir)" || exit $$?; \
|
782
|
-
done
|
783
|
-
|
784
|
-
uninstall-internalincludeHEADERS:
|
785
|
-
@$(NORMAL_UNINSTALL)
|
786
|
-
@list='$(internalinclude_HEADERS)'; test -n "$(internalincludedir)" || list=; \
|
787
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
788
|
-
test -n "$$files" || exit 0; \
|
789
|
-
echo " ( cd '$(DESTDIR)$(internalincludedir)' && rm -f" $$files ")"; \
|
790
|
-
cd "$(DESTDIR)$(internalincludedir)" && rm -f $$files
|
791
|
-
install-nodist_internalincludeHEADERS: $(nodist_internalinclude_HEADERS)
|
792
|
-
@$(NORMAL_INSTALL)
|
793
|
-
test -z "$(internalincludedir)" || $(MKDIR_P) "$(DESTDIR)$(internalincludedir)"
|
794
|
-
@list='$(nodist_internalinclude_HEADERS)'; test -n "$(internalincludedir)" || list=; \
|
795
|
-
for p in $$list; do \
|
796
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
797
|
-
echo "$$d$$p"; \
|
798
|
-
done | $(am__base_list) | \
|
799
|
-
while read files; do \
|
800
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(internalincludedir)'"; \
|
801
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(internalincludedir)" || exit $$?; \
|
802
|
-
done
|
803
|
-
|
804
|
-
uninstall-nodist_internalincludeHEADERS:
|
805
|
-
@$(NORMAL_UNINSTALL)
|
806
|
-
@list='$(nodist_internalinclude_HEADERS)'; test -n "$(internalincludedir)" || list=; \
|
807
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
808
|
-
test -n "$$files" || exit 0; \
|
809
|
-
echo " ( cd '$(DESTDIR)$(internalincludedir)' && rm -f" $$files ")"; \
|
810
|
-
cd "$(DESTDIR)$(internalincludedir)" && rm -f $$files
|
811
|
-
install-sparsehashincludeHEADERS: $(sparsehashinclude_HEADERS)
|
812
|
-
@$(NORMAL_INSTALL)
|
813
|
-
test -z "$(sparsehashincludedir)" || $(MKDIR_P) "$(DESTDIR)$(sparsehashincludedir)"
|
814
|
-
@list='$(sparsehashinclude_HEADERS)'; test -n "$(sparsehashincludedir)" || list=; \
|
815
|
-
for p in $$list; do \
|
816
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
817
|
-
echo "$$d$$p"; \
|
818
|
-
done | $(am__base_list) | \
|
819
|
-
while read files; do \
|
820
|
-
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(sparsehashincludedir)'"; \
|
821
|
-
$(INSTALL_HEADER) $$files "$(DESTDIR)$(sparsehashincludedir)" || exit $$?; \
|
822
|
-
done
|
823
|
-
|
824
|
-
uninstall-sparsehashincludeHEADERS:
|
825
|
-
@$(NORMAL_UNINSTALL)
|
826
|
-
@list='$(sparsehashinclude_HEADERS)'; test -n "$(sparsehashincludedir)" || list=; \
|
827
|
-
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
828
|
-
test -n "$$files" || exit 0; \
|
829
|
-
echo " ( cd '$(DESTDIR)$(sparsehashincludedir)' && rm -f" $$files ")"; \
|
830
|
-
cd "$(DESTDIR)$(sparsehashincludedir)" && rm -f $$files
|
831
|
-
|
832
|
-
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
833
|
-
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
834
|
-
unique=`for i in $$list; do \
|
835
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
836
|
-
done | \
|
837
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
838
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
839
|
-
mkid -fID $$unique
|
840
|
-
tags: TAGS
|
841
|
-
|
842
|
-
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
843
|
-
$(TAGS_FILES) $(LISP)
|
844
|
-
set x; \
|
845
|
-
here=`pwd`; \
|
846
|
-
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
847
|
-
unique=`for i in $$list; do \
|
848
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
849
|
-
done | \
|
850
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
851
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
852
|
-
shift; \
|
853
|
-
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
854
|
-
test -n "$$unique" || unique=$$empty_fix; \
|
855
|
-
if test $$# -gt 0; then \
|
856
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
857
|
-
"$$@" $$unique; \
|
858
|
-
else \
|
859
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
860
|
-
$$unique; \
|
861
|
-
fi; \
|
862
|
-
fi
|
863
|
-
ctags: CTAGS
|
864
|
-
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
865
|
-
$(TAGS_FILES) $(LISP)
|
866
|
-
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
867
|
-
unique=`for i in $$list; do \
|
868
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
869
|
-
done | \
|
870
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
871
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
872
|
-
test -z "$(CTAGS_ARGS)$$unique" \
|
873
|
-
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
874
|
-
$$unique
|
875
|
-
|
876
|
-
GTAGS:
|
877
|
-
here=`$(am__cd) $(top_builddir) && pwd` \
|
878
|
-
&& $(am__cd) $(top_srcdir) \
|
879
|
-
&& gtags -i $(GTAGS_ARGS) "$$here"
|
880
|
-
|
881
|
-
distclean-tags:
|
882
|
-
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
883
|
-
|
884
|
-
check-TESTS: $(TESTS)
|
885
|
-
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
886
|
-
srcdir=$(srcdir); export srcdir; \
|
887
|
-
list=' $(TESTS) '; \
|
888
|
-
$(am__tty_colors); \
|
889
|
-
if test -n "$$list"; then \
|
890
|
-
for tst in $$list; do \
|
891
|
-
if test -f ./$$tst; then dir=./; \
|
892
|
-
elif test -f $$tst; then dir=; \
|
893
|
-
else dir="$(srcdir)/"; fi; \
|
894
|
-
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
895
|
-
all=`expr $$all + 1`; \
|
896
|
-
case " $(XFAIL_TESTS) " in \
|
897
|
-
*[\ \ ]$$tst[\ \ ]*) \
|
898
|
-
xpass=`expr $$xpass + 1`; \
|
899
|
-
failed=`expr $$failed + 1`; \
|
900
|
-
col=$$red; res=XPASS; \
|
901
|
-
;; \
|
902
|
-
*) \
|
903
|
-
col=$$grn; res=PASS; \
|
904
|
-
;; \
|
905
|
-
esac; \
|
906
|
-
elif test $$? -ne 77; then \
|
907
|
-
all=`expr $$all + 1`; \
|
908
|
-
case " $(XFAIL_TESTS) " in \
|
909
|
-
*[\ \ ]$$tst[\ \ ]*) \
|
910
|
-
xfail=`expr $$xfail + 1`; \
|
911
|
-
col=$$lgn; res=XFAIL; \
|
912
|
-
;; \
|
913
|
-
*) \
|
914
|
-
failed=`expr $$failed + 1`; \
|
915
|
-
col=$$red; res=FAIL; \
|
916
|
-
;; \
|
917
|
-
esac; \
|
918
|
-
else \
|
919
|
-
skip=`expr $$skip + 1`; \
|
920
|
-
col=$$blu; res=SKIP; \
|
921
|
-
fi; \
|
922
|
-
echo "$${col}$$res$${std}: $$tst"; \
|
923
|
-
done; \
|
924
|
-
if test "$$all" -eq 1; then \
|
925
|
-
tests="test"; \
|
926
|
-
All=""; \
|
927
|
-
else \
|
928
|
-
tests="tests"; \
|
929
|
-
All="All "; \
|
930
|
-
fi; \
|
931
|
-
if test "$$failed" -eq 0; then \
|
932
|
-
if test "$$xfail" -eq 0; then \
|
933
|
-
banner="$$All$$all $$tests passed"; \
|
934
|
-
else \
|
935
|
-
if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
|
936
|
-
banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
|
937
|
-
fi; \
|
938
|
-
else \
|
939
|
-
if test "$$xpass" -eq 0; then \
|
940
|
-
banner="$$failed of $$all $$tests failed"; \
|
941
|
-
else \
|
942
|
-
if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
|
943
|
-
banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
|
944
|
-
fi; \
|
945
|
-
fi; \
|
946
|
-
dashes="$$banner"; \
|
947
|
-
skipped=""; \
|
948
|
-
if test "$$skip" -ne 0; then \
|
949
|
-
if test "$$skip" -eq 1; then \
|
950
|
-
skipped="($$skip test was not run)"; \
|
951
|
-
else \
|
952
|
-
skipped="($$skip tests were not run)"; \
|
953
|
-
fi; \
|
954
|
-
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
955
|
-
dashes="$$skipped"; \
|
956
|
-
fi; \
|
957
|
-
report=""; \
|
958
|
-
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
959
|
-
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
960
|
-
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
961
|
-
dashes="$$report"; \
|
962
|
-
fi; \
|
963
|
-
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
964
|
-
if test "$$failed" -eq 0; then \
|
965
|
-
echo "$$grn$$dashes"; \
|
966
|
-
else \
|
967
|
-
echo "$$red$$dashes"; \
|
968
|
-
fi; \
|
969
|
-
echo "$$banner"; \
|
970
|
-
test -z "$$skipped" || echo "$$skipped"; \
|
971
|
-
test -z "$$report" || echo "$$report"; \
|
972
|
-
echo "$$dashes$$std"; \
|
973
|
-
test "$$failed" -eq 0; \
|
974
|
-
else :; fi
|
975
|
-
|
976
|
-
distdir: $(DISTFILES)
|
977
|
-
$(am__remove_distdir)
|
978
|
-
test -d "$(distdir)" || mkdir "$(distdir)"
|
979
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
980
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
981
|
-
list='$(DISTFILES)'; \
|
982
|
-
dist_files=`for file in $$list; do echo $$file; done | \
|
983
|
-
sed -e "s|^$$srcdirstrip/||;t" \
|
984
|
-
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
985
|
-
case $$dist_files in \
|
986
|
-
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
987
|
-
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
988
|
-
sort -u` ;; \
|
989
|
-
esac; \
|
990
|
-
for file in $$dist_files; do \
|
991
|
-
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
992
|
-
if test -d $$d/$$file; then \
|
993
|
-
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
994
|
-
if test -d "$(distdir)/$$file"; then \
|
995
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
996
|
-
fi; \
|
997
|
-
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
998
|
-
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
999
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1000
|
-
fi; \
|
1001
|
-
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
1002
|
-
else \
|
1003
|
-
test -f "$(distdir)/$$file" \
|
1004
|
-
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
1005
|
-
|| exit 1; \
|
1006
|
-
fi; \
|
1007
|
-
done
|
1008
|
-
$(MAKE) $(AM_MAKEFLAGS) \
|
1009
|
-
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
1010
|
-
dist-hook
|
1011
|
-
-test -n "$(am__skip_mode_fix)" \
|
1012
|
-
|| find "$(distdir)" -type d ! -perm -755 \
|
1013
|
-
-exec chmod u+rwx,go+rx {} \; -o \
|
1014
|
-
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
1015
|
-
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
1016
|
-
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
1017
|
-
|| chmod -R a+r "$(distdir)"
|
1018
|
-
dist-gzip: distdir
|
1019
|
-
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
1020
|
-
$(am__remove_distdir)
|
1021
|
-
|
1022
|
-
dist-bzip2: distdir
|
1023
|
-
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
1024
|
-
$(am__remove_distdir)
|
1025
|
-
|
1026
|
-
dist-lzma: distdir
|
1027
|
-
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
1028
|
-
$(am__remove_distdir)
|
1029
|
-
|
1030
|
-
dist-xz: distdir
|
1031
|
-
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
|
1032
|
-
$(am__remove_distdir)
|
1033
|
-
|
1034
|
-
dist-tarZ: distdir
|
1035
|
-
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
1036
|
-
$(am__remove_distdir)
|
1037
|
-
|
1038
|
-
dist-shar: distdir
|
1039
|
-
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
1040
|
-
$(am__remove_distdir)
|
1041
|
-
dist-zip: distdir
|
1042
|
-
-rm -f $(distdir).zip
|
1043
|
-
zip -rq $(distdir).zip $(distdir)
|
1044
|
-
$(am__remove_distdir)
|
1045
|
-
|
1046
|
-
dist dist-all: distdir
|
1047
|
-
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
1048
|
-
-rm -f $(distdir).zip
|
1049
|
-
zip -rq $(distdir).zip $(distdir)
|
1050
|
-
$(am__remove_distdir)
|
1051
|
-
|
1052
|
-
# This target untars the dist file and tries a VPATH configuration. Then
|
1053
|
-
# it guarantees that the distribution is self-contained by making another
|
1054
|
-
# tarfile.
|
1055
|
-
distcheck: dist
|
1056
|
-
case '$(DIST_ARCHIVES)' in \
|
1057
|
-
*.tar.gz*) \
|
1058
|
-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
1059
|
-
*.tar.bz2*) \
|
1060
|
-
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
1061
|
-
*.tar.lzma*) \
|
1062
|
-
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
1063
|
-
*.tar.xz*) \
|
1064
|
-
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
1065
|
-
*.tar.Z*) \
|
1066
|
-
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
1067
|
-
*.shar.gz*) \
|
1068
|
-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
1069
|
-
*.zip*) \
|
1070
|
-
unzip $(distdir).zip ;;\
|
1071
|
-
esac
|
1072
|
-
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
1073
|
-
mkdir $(distdir)/_build
|
1074
|
-
mkdir $(distdir)/_inst
|
1075
|
-
chmod a-w $(distdir)
|
1076
|
-
test -d $(distdir)/_build || exit 0; \
|
1077
|
-
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
1078
|
-
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
1079
|
-
&& am__cwd=`pwd` \
|
1080
|
-
&& $(am__cd) $(distdir)/_build \
|
1081
|
-
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
1082
|
-
$(DISTCHECK_CONFIGURE_FLAGS) \
|
1083
|
-
&& $(MAKE) $(AM_MAKEFLAGS) \
|
1084
|
-
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
1085
|
-
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
1086
|
-
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
1087
|
-
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
1088
|
-
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
1089
|
-
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
1090
|
-
distuninstallcheck \
|
1091
|
-
&& chmod -R a-w "$$dc_install_base" \
|
1092
|
-
&& ({ \
|
1093
|
-
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
1094
|
-
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
1095
|
-
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
1096
|
-
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
1097
|
-
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
1098
|
-
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
1099
|
-
&& rm -rf "$$dc_destdir" \
|
1100
|
-
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
1101
|
-
&& rm -rf $(DIST_ARCHIVES) \
|
1102
|
-
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
1103
|
-
&& cd "$$am__cwd" \
|
1104
|
-
|| exit 1
|
1105
|
-
$(am__remove_distdir)
|
1106
|
-
@(echo "$(distdir) archives ready for distribution: "; \
|
1107
|
-
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
1108
|
-
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
1109
|
-
distuninstallcheck:
|
1110
|
-
@$(am__cd) '$(distuninstallcheck_dir)' \
|
1111
|
-
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
1112
|
-
|| { echo "ERROR: files left after uninstall:" ; \
|
1113
|
-
if test -n "$(DESTDIR)"; then \
|
1114
|
-
echo " (check DESTDIR support)"; \
|
1115
|
-
fi ; \
|
1116
|
-
$(distuninstallcheck_listfiles) ; \
|
1117
|
-
exit 1; } >&2
|
1118
|
-
distcleancheck: distclean
|
1119
|
-
@if test '$(srcdir)' = . ; then \
|
1120
|
-
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
1121
|
-
exit 1 ; \
|
1122
|
-
fi
|
1123
|
-
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
1124
|
-
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
1125
|
-
$(distcleancheck_listfiles) ; \
|
1126
|
-
exit 1; } >&2
|
1127
|
-
check-am: all-am
|
1128
|
-
$(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS)
|
1129
|
-
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
1130
|
-
check: $(BUILT_SOURCES)
|
1131
|
-
$(MAKE) $(AM_MAKEFLAGS) check-am
|
1132
|
-
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS)
|
1133
|
-
installdirs:
|
1134
|
-
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(googleincludedir)" "$(DESTDIR)$(googleinternalincludedir)" "$(DESTDIR)$(internalincludedir)" "$(DESTDIR)$(internalincludedir)" "$(DESTDIR)$(sparsehashincludedir)"; do \
|
1135
|
-
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
1136
|
-
done
|
1137
|
-
install: $(BUILT_SOURCES)
|
1138
|
-
$(MAKE) $(AM_MAKEFLAGS) install-am
|
1139
|
-
install-exec: install-exec-am
|
1140
|
-
install-data: install-data-am
|
1141
|
-
uninstall: uninstall-am
|
1142
|
-
|
1143
|
-
install-am: all-am
|
1144
|
-
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
1145
|
-
|
1146
|
-
installcheck: installcheck-am
|
1147
|
-
install-strip:
|
1148
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1149
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1150
|
-
`test -z '$(STRIP)' || \
|
1151
|
-
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
1152
|
-
mostlyclean-generic:
|
1153
|
-
|
1154
|
-
clean-generic:
|
1155
|
-
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
1156
|
-
|
1157
|
-
distclean-generic:
|
1158
|
-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
1159
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
1160
|
-
|
1161
|
-
maintainer-clean-generic:
|
1162
|
-
@echo "This command is intended for maintainers to use"
|
1163
|
-
@echo "it deletes files that may require special tools to rebuild."
|
1164
|
-
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
1165
|
-
clean: clean-am
|
1166
|
-
|
1167
|
-
clean-am: clean-generic clean-libLTLIBRARIES clean-noinstPROGRAMS \
|
1168
|
-
mostlyclean-am
|
1169
|
-
|
1170
|
-
distclean: distclean-am
|
1171
|
-
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1172
|
-
-rm -rf ./$(DEPDIR)
|
1173
|
-
-rm -f Makefile
|
1174
|
-
distclean-am: clean-am distclean-compile distclean-generic \
|
1175
|
-
distclean-hdr distclean-tags
|
1176
|
-
|
1177
|
-
dvi: dvi-am
|
1178
|
-
|
1179
|
-
dvi-am:
|
1180
|
-
|
1181
|
-
html: html-am
|
1182
|
-
|
1183
|
-
html-am:
|
1184
|
-
|
1185
|
-
info: info-am
|
1186
|
-
|
1187
|
-
info-am:
|
1188
|
-
|
1189
|
-
install-data-am: install-dist_docDATA install-googleincludeHEADERS \
|
1190
|
-
install-googleinternalincludeHEADERS \
|
1191
|
-
install-internalincludeHEADERS \
|
1192
|
-
install-nodist_internalincludeHEADERS install-pkgconfigDATA \
|
1193
|
-
install-sparsehashincludeHEADERS
|
1194
|
-
|
1195
|
-
install-dvi: install-dvi-am
|
1196
|
-
|
1197
|
-
install-dvi-am:
|
1198
|
-
|
1199
|
-
install-exec-am: install-libLTLIBRARIES
|
1200
|
-
|
1201
|
-
install-html: install-html-am
|
1202
|
-
|
1203
|
-
install-html-am:
|
1204
|
-
|
1205
|
-
install-info: install-info-am
|
1206
|
-
|
1207
|
-
install-info-am:
|
1208
|
-
|
1209
|
-
install-man:
|
1210
|
-
|
1211
|
-
install-pdf: install-pdf-am
|
1212
|
-
|
1213
|
-
install-pdf-am:
|
1214
|
-
|
1215
|
-
install-ps: install-ps-am
|
1216
|
-
|
1217
|
-
install-ps-am:
|
1218
|
-
|
1219
|
-
installcheck-am:
|
1220
|
-
|
1221
|
-
maintainer-clean: maintainer-clean-am
|
1222
|
-
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1223
|
-
-rm -rf $(top_srcdir)/autom4te.cache
|
1224
|
-
-rm -rf ./$(DEPDIR)
|
1225
|
-
-rm -f Makefile
|
1226
|
-
maintainer-clean-am: distclean-am maintainer-clean-generic
|
1227
|
-
|
1228
|
-
mostlyclean: mostlyclean-am
|
1229
|
-
|
1230
|
-
mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
1231
|
-
|
1232
|
-
pdf: pdf-am
|
1233
|
-
|
1234
|
-
pdf-am:
|
1235
|
-
|
1236
|
-
ps: ps-am
|
1237
|
-
|
1238
|
-
ps-am:
|
1239
|
-
|
1240
|
-
uninstall-am: uninstall-dist_docDATA uninstall-googleincludeHEADERS \
|
1241
|
-
uninstall-googleinternalincludeHEADERS \
|
1242
|
-
uninstall-internalincludeHEADERS uninstall-libLTLIBRARIES \
|
1243
|
-
uninstall-nodist_internalincludeHEADERS \
|
1244
|
-
uninstall-pkgconfigDATA uninstall-sparsehashincludeHEADERS
|
1245
|
-
|
1246
|
-
.MAKE: all check check-am install install-am install-strip
|
1247
|
-
|
1248
|
-
.PHONY: CTAGS GTAGS all all-am am--refresh check check-TESTS check-am \
|
1249
|
-
clean clean-generic clean-libLTLIBRARIES clean-noinstPROGRAMS \
|
1250
|
-
ctags dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzma \
|
1251
|
-
dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \
|
1252
|
-
distclean-compile distclean-generic distclean-hdr \
|
1253
|
-
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
1254
|
-
dvi-am html html-am info info-am install install-am \
|
1255
|
-
install-data install-data-am install-dist_docDATA install-dvi \
|
1256
|
-
install-dvi-am install-exec install-exec-am \
|
1257
|
-
install-googleincludeHEADERS \
|
1258
|
-
install-googleinternalincludeHEADERS install-html \
|
1259
|
-
install-html-am install-info install-info-am \
|
1260
|
-
install-internalincludeHEADERS install-libLTLIBRARIES \
|
1261
|
-
install-man install-nodist_internalincludeHEADERS install-pdf \
|
1262
|
-
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
1263
|
-
install-sparsehashincludeHEADERS install-strip installcheck \
|
1264
|
-
installcheck-am installdirs maintainer-clean \
|
1265
|
-
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
1266
|
-
mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
|
1267
|
-
uninstall-am uninstall-dist_docDATA \
|
1268
|
-
uninstall-googleincludeHEADERS \
|
1269
|
-
uninstall-googleinternalincludeHEADERS \
|
1270
|
-
uninstall-internalincludeHEADERS uninstall-libLTLIBRARIES \
|
1271
|
-
uninstall-nodist_internalincludeHEADERS \
|
1272
|
-
uninstall-pkgconfigDATA uninstall-sparsehashincludeHEADERS
|
1273
|
-
|
1274
|
-
|
1275
|
-
# All our .h files need to read the config information in config.h. The
|
1276
|
-
# autoheader config.h has too much info, including PACKAGENAME, that
|
1277
|
-
# might conflict with other config.h's an application might #include.
|
1278
|
-
# Thus, we create a "minimal" config.h, called sparseconfig.h, that
|
1279
|
-
# includes only the #defines we really need, and that are unlikely to
|
1280
|
-
# change from system to system. NOTE: The awk command is equivalent to
|
1281
|
-
# fgrep -B2 -f$(top_builddir)/src/config.h.include $(top_builddir)/src/config.h
|
1282
|
-
# | fgrep -vx -e -- > _sparsehash_config
|
1283
|
-
# For correctness, it depends on the fact config.h.include does not have
|
1284
|
-
# any lines starting with #.
|
1285
|
-
src/sparsehash/internal/sparseconfig.h: $(top_builddir)/src/config.h \
|
1286
|
-
$(top_srcdir)/src/config.h.include
|
1287
|
-
[ -d $(@D) ] || mkdir -p $(@D)
|
1288
|
-
echo "/*" > $(@D)/_sparsehash_config
|
1289
|
-
echo " * NOTE: This file is for internal use only." >> $(@D)/_sparsehash_config
|
1290
|
-
echo " * Do not use these #defines in your own program!" >> $(@D)/_sparsehash_config
|
1291
|
-
echo " */" >> $(@D)/_sparsehash_config
|
1292
|
-
$(AWK) '{prevline=currline; currline=$$0;} \
|
1293
|
-
/^#/ {in_second_file = 1;} \
|
1294
|
-
!in_second_file {if (currline !~ /^ *$$/) {inc[currline]=0}}; \
|
1295
|
-
in_second_file { for (i in inc) { \
|
1296
|
-
if (index(currline, i) != 0) { \
|
1297
|
-
print "\n"prevline"\n"currline; \
|
1298
|
-
delete inc[i]; \
|
1299
|
-
} \
|
1300
|
-
} }' \
|
1301
|
-
$(top_srcdir)/src/config.h.include $(top_builddir)/src/config.h \
|
1302
|
-
>> $(@D)/_sparsehash_config
|
1303
|
-
mv -f $(@D)/_sparsehash_config $@
|
1304
|
-
|
1305
|
-
rpm: dist-gzip packages/rpm.sh packages/rpm/rpm.spec
|
1306
|
-
@cd packages && ./rpm.sh ${PACKAGE} ${VERSION}
|
1307
|
-
|
1308
|
-
deb: dist-gzip packages/deb.sh packages/deb/*
|
1309
|
-
@cd packages && ./deb.sh ${PACKAGE} ${VERSION}
|
1310
|
-
|
1311
|
-
# I get the description and URL lines from the rpm spec. I use sed to
|
1312
|
-
# try to rewrite exec_prefix, libdir, and includedir in terms of
|
1313
|
-
# prefix, if possible.
|
1314
|
-
lib${PACKAGE}.pc: Makefile packages/rpm/rpm.spec
|
1315
|
-
echo 'prefix=$(prefix)' > "$@".tmp
|
1316
|
-
echo 'exec_prefix='`echo '$(exec_prefix)' | sed 's@^$(prefix)@$${prefix}@'` >> "$@".tmp
|
1317
|
-
echo 'libdir='`echo '$(libdir)' | sed 's@^$(exec_prefix)@$${exec_prefix}@'` >> "$@".tmp
|
1318
|
-
echo 'includedir='`echo '$(includedir)' | sed 's@^$(prefix)@$${prefix}@'` >> "$@".tmp
|
1319
|
-
echo '' >> "$@".tmp
|
1320
|
-
echo 'Name: $(PACKAGE)' >> "$@".tmp
|
1321
|
-
echo 'Version: $(VERSION)' >> "$@".tmp
|
1322
|
-
-grep '^Summary:' $(top_srcdir)/packages/rpm/rpm.spec | sed s/^Summary:/Description:/ | head -n1 >> "$@".tmp
|
1323
|
-
-grep '^URL: ' $(top_srcdir)/packages/rpm/rpm.spec >> "$@".tmp
|
1324
|
-
echo 'Requires:' >> "$@".tmp
|
1325
|
-
echo 'Libs:' >> "$@".tmp
|
1326
|
-
echo 'Cflags: -I$${includedir}' >> "$@".tmp
|
1327
|
-
mv -f "$@".tmp "$@"
|
1328
|
-
|
1329
|
-
# Windows wants write permission to .vcproj files and maybe even sln files.
|
1330
|
-
dist-hook:
|
1331
|
-
test -e "$(distdir)/vsprojects" \
|
1332
|
-
&& chmod -R u+w $(distdir)/*.sln $(distdir)/vsprojects/
|
1333
|
-
|
1334
|
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1335
|
-
# Otherwise a system limit (for SysV at least) may be exceeded.
|
1336
|
-
.NOEXPORT:
|