office-gobmx/odk/Module_odk.mk
David Tardon 085c5c6bea make odk inst. check a check target
Change-Id: I1bd8ee091a3c74ad05af69a4b7d5a2db21731b76
Reviewed-on: https://gerrit.libreoffice.org/3535
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-22 07:05:35 +00:00

68 lines
1.6 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/.
#
$(eval $(call gb_Module_Module,odk))
$(eval $(call gb_Module_add_targets,odk,\
CustomTarget_odkcommon \
$(if $(filter WNT,$(OS)),Package_cli) \
$(if $(DOXYGEN),CustomTarget_doxygen) \
CustomTarget_html \
CustomTarget_settings \
CustomTarget_autodoc \
Executable_unoapploader \
Package_bin \
Package_config \
Package_docs \
Package_html \
Package_examples \
Package_lib \
Package_settings \
Package_settings_generated \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,odk,\
CustomTarget_config_win \
Package_config_win \
))
else
$(eval $(call gb_Module_add_targets,odk,\
Package_config_notwin \
))
endif
ifeq ($(OS),MACOSX)
$(eval $(call gb_Module_add_targets,odk,\
Package_macosx \
))
endif
ifneq ($(SOLAR_JAVA),)
$(eval $(call gb_Module_add_targets,odk,\
$(if $(filter YESGCC,$(BUILD_UNOWINREG)$(COM)),CustomTarget_unowinreg) \
CustomTarget_classes \
CustomTarget_javadoc \
$(if $(filter WNT,$(OS)),Library_unowinreg) \
Package_unowinreg \
Zip_uno_loader_classes \
))
endif
# This apparently needs to come last, as the various CustomTarget_* add to
# odkcommon_ZIPLIST that is used here:
$(eval $(call gb_Module_add_targets,odk,\
Zip_odkcommon \
))
$(eval $(call gb_Module_add_check_targets,odk,\
CustomTarget_check \
))
# vim: set noet sw=4 ts=4: