blob: 5a078c6ff38e2ea71b538979457e84c06ee782c9 [file] [log] [blame]
James E. King IIIb1d63e72019-01-22 14:16:39 -05001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20all-local:
21 ./gradlew $(GRADLE_OPTS) compile \
22 -Prelease=true \
23 --console=plain
24
25install-exec-hook:
26 ./gradlew $(GRADLE_OPTS) publishToMavenLocal \
27 -Prelease=true \
28 --console=plain
29
30clean-local:
31 ./gradlew $(GRADLE_OPTS) clean \
32 -Prelease=true \
33 --console=plain
34
35check-local: $(THRIFT)
36 ./gradlew $(GRADLE_OPTS) test \
37 -Prelease=true \
38 --console=plain
39
40maven-publish:
41 ./gradlew $(GRADLE_OPTS) publishMavenPublicationToMavenRepository \
42 -Prelease=true \
43 -Psign=true \
44 --console=plain
45
46EXTRA_DIST = \
47 CMakeLists.txt \
48 README.md \
49 build.gradle \
50 coding_standards.md \
51 gradle \
52 gradle.properties \
53 gradlew \
54 gradlew.bat \
55 settings.gradle \
56 src