2009-03-30 21:35:00 +00:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you 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.
|
|
|
|
#
|
|
|
|
|
2009-05-22 19:50:33 +00:00
|
|
|
export CLASSPATH
|
|
|
|
|
2008-02-24 17:45:03 +00:00
|
|
|
all-local:
|
2018-01-24 15:30:13 +00:00
|
|
|
./gradlew $(GRADLE_OPTS) assemble \
|
|
|
|
-Prelease=true \
|
|
|
|
-Pthrift.version=$(PACKAGE_VERSION) \
|
|
|
|
--console=plain
|
2008-02-23 22:07:39 +00:00
|
|
|
|
|
|
|
install-exec-hook:
|
2018-01-24 15:30:13 +00:00
|
|
|
./gradlew $(GRADLE_OPTS) install \
|
|
|
|
-Prelease=true \
|
|
|
|
-Pinstall.path=$(DESTDIR)$(JAVA_PREFIX) \
|
|
|
|
-Pinstall.javadoc.path=$(DESTDIR)$(docdir)/java \
|
|
|
|
-Pthrift.version=$(PACKAGE_VERSION) \
|
|
|
|
--console=plain
|
2008-02-23 22:07:39 +00:00
|
|
|
|
2008-02-24 16:42:18 +00:00
|
|
|
clean-local:
|
2018-01-24 15:30:13 +00:00
|
|
|
./gradlew $(GRADLE_OPTS) clean --console=plain
|
2008-02-23 22:07:39 +00:00
|
|
|
|
2015-03-24 21:30:40 +00:00
|
|
|
precross: $(THRIFT)
|
2018-01-24 15:30:13 +00:00
|
|
|
./gradlew $(GRADLE_OPTS) shadowJar \
|
|
|
|
-Prelease=true \
|
|
|
|
-Pthrift.version=$(PACKAGE_VERSION) \
|
|
|
|
-Pthrift.compiler=$(THRIFT) \
|
|
|
|
--console=plain
|
2015-03-24 21:30:40 +00:00
|
|
|
|
2018-01-24 15:30:13 +00:00
|
|
|
check-local: $(THRIFT)
|
|
|
|
./gradlew $(GRADLE_OPTS) test \
|
|
|
|
-Prelease=true \
|
|
|
|
-Pthrift.version=$(PACKAGE_VERSION) \
|
|
|
|
-Pthrift.compiler=$(THRIFT) \
|
|
|
|
--console=plain
|
|
|
|
|
|
|
|
maven-publish:
|
|
|
|
./gradlew $(GRADLE_OPTS) uploadArchives \
|
|
|
|
-Prelease=true \
|
|
|
|
-Pthrift.version=$(PACKAGE_VERSION) \
|
|
|
|
--console=plain
|
2009-01-29 21:31:25 +00:00
|
|
|
|
2014-07-10 13:14:51 +00:00
|
|
|
EXTRA_DIST = \
|
2018-01-24 15:30:13 +00:00
|
|
|
build.gradle \
|
|
|
|
gradle.properties \
|
|
|
|
settings.gradle \
|
|
|
|
gradle \
|
|
|
|
gradlew \
|
|
|
|
gradlew.bat \
|
2015-08-25 04:39:29 +00:00
|
|
|
CMakeLists.txt \
|
|
|
|
coding_standards.md \
|
2016-03-19 14:32:11 +00:00
|
|
|
android \
|
2014-10-03 18:42:54 +00:00
|
|
|
src \
|
|
|
|
test \
|
2018-01-24 15:30:13 +00:00
|
|
|
code_quality_tools \
|
2016-03-19 14:32:11 +00:00
|
|
|
README.md
|