forked from amazingfate/loongoffice
Experimental. Let's see whether it makes sense to not use Java when building the LO core for the (newer, Online-based) Android app. Change-Id: I119861704d02bbfaa0cfd9f72c7b437f1730e48e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95847 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
20 lines
576 B
Makefile
20 lines
576 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,owncloud_android_lib))
|
|
|
|
ifneq ($(ENABLE_JAVA),)
|
|
$(eval $(call gb_Module_add_targets,owncloud_android_lib, \
|
|
ExternalProject_owncloud_android_lib \
|
|
UnpackedTarball_owncloud_android_lib \
|
|
))
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|