office-gobmx/odk/Module_odk.mk
Jan-Marek Glogowski 5e1b3e924a Rename LO Windows arm64 ID to aarch64
The Windows platform is called Arm64. But now that the ID for Mac
is also going to be renamed from arm64 to aarch64, this get's rid
of the arm64 as the UNO identifier and user in gbuild, just like
on all other Arm64 platforms.

Change-Id: I60a7eafd04b426f17b6e41ad9a09e6405c0d4173
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112973
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
2021-03-23 23:46:12 +01:00

66 lines
1.5 KiB
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/.
#
include $(SRCDIR)/odk/build-examples_common.mk
$(eval $(call gb_Module_Module,odk))
$(eval $(call gb_Module_add_targets,odk,\
$(if $(DOXYGEN),\
CustomTarget_doxygen \
GeneratedPackage_odk_doxygen \
) \
CustomTarget_html \
CustomTarget_settings \
Executable_unoapploader \
Package_config \
Package_docs \
Package_html \
Package_examples \
Package_odk_headers \
Package_odk_headers_generated \
Package_settings \
Package_settings_generated \
Package_share_readme \
Package_share_readme_generated \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,odk,\
$(if $(filter-out AARCH64,$(CPUNAME)),Package_cli) \
CustomTarget_config_win \
Package_config_win \
))
endif
ifneq ($(ENABLE_JAVA),)
$(eval $(call gb_Module_add_targets,odk,\
CustomTarget_classes \
CustomTarget_javadoc \
GeneratedPackage_odk_javadoc \
GeneratedPackage_uno_loader_classes \
))
endif
$(eval $(call gb_Module_add_check_targets,odk,\
CppunitTest_odk_checkapi \
CustomTarget_allheaders \
CustomTarget_check \
))
ifneq ($(filter $(OS),LINUX MACOSX),)
$(eval $(call gb_Module_add_subsequentcheck_targets,odk, \
CustomTarget_build-examples \
$(if $(ENABLE_JAVA),\
CustomTarget_build-examples_java \
) \
))
endif
# vim: set noet sw=4 ts=4: