office-gobmx/desktop/Module_desktop.mk

130 lines
2.9 KiB
Makefile
Raw Normal View History

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2011-09-15 07:44:34 -05:00
#
# This file is part of the LibreOffice project.
2011-09-15 07:44:34 -05:00
#
# 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/.
2011-09-15 07:44:34 -05:00
#
$(eval $(call gb_Module_Module,desktop))
$(eval $(call gb_Module_add_targets,desktop,\
AllLangResTarget_deployment \
AllLangResTarget_deploymentgui \
AllLangResTarget_dkt \
Library_deployment \
Library_deploymentgui \
Library_deploymentmisc \
Library_offacc \
Library_sofficeapp \
$(if $(ENABLE_HEADLESS),,Library_spl) \
Package_branding \
$(if $(CUSTOM_BRAND_DIR),Package_branding_custom) \
UIConfig_deployment \
))
ifeq ($(OS),LINUX)
$(eval $(call gb_Module_add_targets,desktop,\
Library_libreoffice \
))
endif
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,desktop,\
2011-09-20 07:53:21 -05:00
Executable_unopkg.bin \
2011-09-15 07:44:34 -05:00
Library_migrationoo2 \
Library_migrationoo3 \
Library_unopkgapp \
$(if $(gb_RUNNABLE_INSTDIR),\
Package_pagein_install \
Package_scripts_install \
) \
2011-09-20 02:17:00 -05:00
Package_scripts \
2011-09-15 07:44:34 -05:00
Pagein_calc \
Pagein_common \
Pagein_draw \
Pagein_impress \
Pagein_writer \
))
2012-01-14 08:28:10 -06:00
ifneq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
Executable_soffice.bin \
))
endif
2012-01-14 08:28:10 -06:00
ifneq ($(OS),MACOSX)
ifneq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
2012-03-30 13:29:04 -05:00
CustomTarget_soffice \
Package_soffice_sh \
))
endif
endif
2012-01-14 08:28:10 -06:00
endif
2011-09-15 07:44:34 -05:00
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
StaticLibrary_winextendloaderenv \
StaticLibrary_winlauncher \
2011-09-20 09:02:27 -05:00
Executable_crashrep.com \
2011-09-15 07:44:34 -05:00
Executable_quickstart \
Executable_sbase \
Executable_scalc \
Executable_sdraw \
Executable_simpress \
Executable_smath \
Executable_soffice \
Executable_soffice_bin \
2011-09-15 07:44:34 -05:00
Executable_sweb \
Executable_swriter \
Executable_unoinfo \
2011-09-20 08:47:45 -05:00
Executable_unopkg \
2011-09-20 07:59:00 -05:00
Executable_unopkg.com \
Package_soffice_bin \
2011-09-15 07:44:34 -05:00
WinResTarget_quickstart \
WinResTarget_sbase \
WinResTarget_scalc \
WinResTarget_sdraw \
WinResTarget_simpress \
WinResTarget_soffice \
WinResTarget_sofficebin \
2011-09-15 07:44:34 -05:00
WinResTarget_smath \
WinResTarget_sweb \
WinResTarget_swriter \
))
else ifeq ($(OS),MACOSX)
2011-09-15 07:44:34 -05:00
$(eval $(call gb_Module_add_targets,desktop,\
Executable_officeloader \
))
else ifeq ($(OS),ANDROID)
else ifeq ($(OS),IOS)
2011-09-15 07:44:34 -05:00
else
$(eval $(call gb_Module_add_targets,desktop,\
Executable_oosplash \
Library_spl_unx \
))
endif
ifneq (,$(filter Extension_test-passive,$(MAKECMDGOALS)))
$(eval $(call gb_Module_add_targets,desktop, \
Extension_test-passive \
Jar_passive_java \
Library_passive_native \
Pyuno_passive_python \
Rdb_passive_generic \
Rdb_passive_platform \
))
endif
2011-09-15 07:44:34 -05:00
# vim: set ts=4 sw=4 et: