forked from quantcast/qfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
126 lines (114 loc) · 4.12 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
# $Id$
#
# Created 2012/07/27
# Author: Mike Ovsiannikov
#
# Copyright 2012-2016 Quantcast All rights reserved.
#
# This file is part of Quantcast File System.
#
# Licensed under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# Do not assume GNU Make. Keep this makefile as simple as possible.
BUILD_TYPE=release
CMAKE_OPTIONS=-D CMAKE_BUILD_TYPE=RelWithDebInfo
CMAKE=cmake
MAKE_OPTIONS=
QFSTEST_OPTIONS=
JAVA_BUILD_OPTIONS=
.PHONY: all
all: build
.PHONY: dir
dir:
mkdir -p build/${BUILD_TYPE}
.PHONY: run-cmake
run-cmake: dir
cd build/${BUILD_TYPE} && ${CMAKE} ${CMAKE_OPTIONS} ../..
.PHONY: build
build: run-cmake
cd build/${BUILD_TYPE} && $(MAKE) ${MAKE_OPTIONS} install
.PHONY: java
java: build
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} clean
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS}
.PHONY: hadoop-jars
hadoop-jars: build java
if mvn --version >/dev/null 2>&1 ; then \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} clean && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 0.23.4 && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 0.23.11 && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 1.0.4 && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 1.1.2 && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 2.5.1 && \
./src/java/javabuild.sh ${JAVA_BUILD_OPTIONS} 2.7.2 \
; fi
.PHONY: tarball
tarball: hadoop-jars
cd build && \
myuname=`uname -s`; \
myarch=`cc -dumpmachine 2>/dev/null | cut -d - -f 1` ; \
[ x"$$myarch" = x ] && \
myarch=`gcc -dumpmachine 2>/dev/null | cut -d - -f 1` ; \
[ x"$$myarch" = x ] && myarch=`uname -m` ; \
if [ x"$$myuname" = x'Linux' -a -f /etc/issue ]; then \
myflavor=`head -n 1 /etc/issue | cut -d' ' -f1` ; \
if [ x"$$myflavor" = x'Ubuntu' ]; then \
myflavor="$$myflavor-`head -n 1 /etc/issue | cut -d' ' -f2`" ; \
elif [ x"$$myflavor" = x ]; then \
myflavor=$$myuname ; \
else \
myflavor="$$myflavor-`head -n 1 /etc/issue | cut -d' ' -f3`" ; \
fi ; \
else \
if echo "$$myuname" | grep CYGWIN > /dev/null; then \
myflavor=cygwin ; \
else \
myflavor=$$myuname ; \
fi ; \
fi ; \
qfsversion=`../src/cc/common/buildversgit.sh --release` ; \
tarname="qfs-$$myflavor-$$qfsversion-$$myarch" ;\
tarname=`echo "$$tarname" | tr A-Z a-z` ; \
{ test -d tmpreldir || mkdir tmpreldir; } && \
rm -rf "tmpreldir/$$tarname" && \
mkdir "tmpreldir/$$tarname" && \
cp -r ${BUILD_TYPE}/bin ${BUILD_TYPE}/lib ${BUILD_TYPE}/include ../scripts ../webui \
../examples ../benchmarks "tmpreldir/$$tarname/" && \
if ls -1 ./java/qfs-access/qfs-access-*.jar > /dev/null 2>&1; then \
cp ./java/qfs-access/qfs-access*.jar "tmpreldir/$$tarname/lib/"; fi && \
if ls -1 ./java/hadoop-qfs/hadoop-*.jar > /dev/null 2>&1; then \
cp ./java/hadoop-qfs/hadoop-*.jar "tmpreldir/$$tarname/lib/"; fi && \
tar cvfz "$$tarname".tgz -C ./tmpreldir "$$tarname" && \
rm -rf tmpreldir
.PHONY: python
python: build
cd build/${BUILD_TYPE} && python ../../src/cc/access/kfs_setup.py build
.PHONY: test
test: hadoop-jars
cd build/${BUILD_TYPE} && \
../../src/test-scripts/qfstest.sh ${QFSTEST_OPTIONS} && \
echo '--------- QC RS recovery test ---------' && \
../../src/test-scripts/recoverytest.sh && \
echo '--------- Jerasure recovery test ------' && \
filecreateparams='fs.createParams=1,6,3,1048576,3,15,15' \
../../src/test-scripts/recoverytest.sh && \
if [ -d qfstest/certs ]; then \
echo '--------- Test without authentication --------' && \
../../src/test-scripts/qfstest.sh -noauth ${QFSTEST_OPTIONS} ; \
fi
.PHONY: rat
rat: dir
cd build/${BUILD_TYPE} && ../../scripts/rat.sh ../..
.PHONY: clean
clean:
rm -rf build