forked from OpenTSDB/asynchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
155 lines (138 loc) · 6.08 KB
/
Makefile
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
# Copyright (c) 2010 StumbleUpon, Inc. All rights reserved.
# This file is part of Async HBase.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# - Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# - Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# - Neither the name of the StumbleUpon nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
all: jar $(TESTS)
# TODO(tsuna): Use automake to avoid relying on GNU make extensions.
top_builddir = build
package = org.hbase.async
spec_title = Asynchronous HBase
spec_vendor = StumbleUpon, Inc.
spec_version = 1.0
hbaseasync_SOURCES = \
src/AtomicIncrementRequest.java \
src/BrokenMetaException.java \
src/Bytes.java \
src/ConnectionResetException.java \
src/DeleteRequest.java \
src/GetRequest.java \
src/HasFailedRpcException.java \
src/HBaseClient.java \
src/HBaseException.java \
src/HBaseRpc.java \
src/InvalidResponseException.java \
src/KeyValue.java \
src/MultiPutRequest.java \
src/MultiPutResponse.java \
src/NoSuchColumnFamilyException.java \
src/NonRecoverableException.java \
src/NotServingRegionException.java \
src/PleaseThrottleException.java \
src/PutRequest.java \
src/RecoverableException.java \
src/RegionClient.java \
src/RegionInfo.java \
src/RegionOfflineException.java \
src/RemoteException.java \
src/RowLock.java \
src/RowLockRequest.java \
src/Scanner.java \
src/SingletonList.java \
src/TableNotFoundException.java \
src/UnknownRowLockException.java \
src/UnknownScannerException.java \
hbaseasync_LIBADD = \
third_party/netty-3.2.2.Final.jar \
third_party/slf4j-api-1.6.1.jar \
third_party/zookeeper-3.3.1.jar \
third_party/suasync-1.0.jar \
test_SOURCES = src/Test.java
test_LIBADD = \
$(hbaseasync_LIBADD) \
third_party/log4j-over-slf4j-1.6.1.jar \
third_party/logback-classic-0.9.24.jar \
third_party/logback-core-0.9.24.jar \
$(jar)
TESTS = $(top_builddir)/Test.class
AM_JAVACFLAGS = -Xlint
JVM_ARGS =
package_dir = $(subst .,/,$(package))
classes=$(hbaseasync_SOURCES:src/%.java=$(top_builddir)/$(package_dir)/%.class)
jar = $(top_builddir)/hbaseasync-$(spec_version).jar
test_classes=$(test_SOURCES:src/%.java=$(top_builddir)/%.class)
jar: $(jar)
get_dep_classpath = `echo $(hbaseasync_LIBADD) | tr ' ' ':'`
$(top_builddir)/.javac-stamp: $(hbaseasync_SOURCES) $(hbaseasync_LIBADD)
@mkdir -p $(top_builddir)
javac $(AM_JAVACFLAGS) -cp $(get_dep_classpath) \
-d $(top_builddir) $(hbaseasync_SOURCES)
@touch "$@"
get_runtime_dep_classpath = `echo $(test_LIBADD) | tr ' ' ':'`
$(test_classes): $(jar) $(test_SOURCES) $(test_LIBADD)
javac $(AM_JAVACFLAGS) -cp $(get_runtime_dep_classpath) \
-d $(top_builddir) $(test_SOURCES)
classes_with_nested_classes = $(classes:$(top_builddir)/%.class=%*.class)
test_classes_with_nested_classes = $(test_classes:$(top_builddir)/%.class=%*.class)
check: $(TESTS)
for i in $(top_builddir)/$(test_classes_with_nested_classes); do \
case $$i in (*[$$]*) continue;; esac; \
java $(JVM_ARGS) -cp $(get_runtime_dep_classpath):$(top_builddir) `basename $${i%.class}` $(ARGS); \
done
pkg_version = \
`git rev-list --pretty=format:%h HEAD --max-count=1 | sed 1d || echo unknown`
$(top_builddir)/manifest: $(top_builddir)/.javac-stamp .git/HEAD
{ echo "Specification-Title: $(spec_title)"; \
echo "Specification-Version: $(spec_version)"; \
echo "Specification-Vendor: $(spec_vendor)"; \
echo "Implementation-Title: $(package)"; \
echo "Implementation-Version: $(pkg_version)"; \
echo "Implementation-Vendor: $(spec_vendor)"; } >"$@"
$(jar): $(top_builddir)/manifest $(top_builddir)/.javac-stamp $(classes)
cd $(top_builddir) && jar cfm `basename $(jar)` manifest $(classes_with_nested_classes) \
|| { rv=$$? && rm -f `basename $(jar)` && exit $$rv; }
# ^^^^^^^^^^^^^^^^^^^^^^^
# I've seen cases where `jar' exits with an error but leaves a partially built .jar file!
doc: $(top_builddir)/api/index.html
JDK_JAVADOC=http://download.oracle.com/javase/6/docs/api
NETTY_JAVADOC=http://docs.jboss.org/netty/3.2/api
SUASYNC_JAVADOC=http://tsunanet.net/~tsuna/async/api
JAVADOCS = $(JDK_JAVADOC) $(NETTY_JAVADOC) $(SUASYNC_JAVADOC)
$(top_builddir)/api/index.html: $(hbaseasync_SOURCES)
javadoc -d $(top_builddir)/api -classpath $(get_dep_classpath) \
`echo $(JAVADOCS) | sed 's/\([^ ]*\)/-link \1/g'` $(hbaseasync_SOURCES)
clean:
@rm -f $(top_builddir)/.javac-stamp
rm -f $(top_builddir)/manifest
cd $(top_builddir) || exit 0 && rm -f $(classes_with_nested_classes) $(test_classes_with_nested_classes)
cd $(top_builddir) || exit 0 \
&& test -d $(package_dir) || exit 0 \
&& dir=$(package_dir) \
&& while test x"$$dir" != x"$${dir%/*}"; do \
rmdir "$$dir" && dir=$${dir%/*} || break; \
done \
&& rmdir "$$dir"
distclean: clean
rm -f $(jar)
rm -rf $(top_builddir)/api
test ! -d $(top_builddir) || rmdir $(top_builddir)
.PHONY: all jar clean distclean doc check