1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# -*- 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,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,\
Executable_unopkg.bin \
Library_migrationoo2 \
Library_migrationoo3 \
Library_unopkgapp \
$(if $(gb_RUNNABLE_INSTDIR),\
Package_pagein_install \
Package_scripts_install \
) \
Package_scripts \
Pagein_calc \
Pagein_common \
Pagein_draw \
Pagein_impress \
Pagein_writer \
))
ifneq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
Executable_soffice.bin \
))
endif
ifneq ($(OS),MACOSX)
ifneq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
CustomTarget_soffice \
Package_soffice_sh \
))
endif
endif
endif
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,desktop,\
StaticLibrary_winextendloaderenv \
StaticLibrary_winlauncher \
Executable_crashrep.com \
Executable_quickstart \
Executable_sbase \
Executable_scalc \
Executable_sdraw \
Executable_simpress \
Executable_smath \
Executable_soffice \
Executable_soffice_bin \
Executable_sweb \
Executable_swriter \
Executable_unoinfo \
Executable_unopkg \
Executable_unopkg.com \
Package_soffice_bin \
WinResTarget_quickstart \
WinResTarget_sbase \
WinResTarget_scalc \
WinResTarget_sdraw \
WinResTarget_simpress \
WinResTarget_soffice \
WinResTarget_sofficebin \
WinResTarget_smath \
WinResTarget_sweb \
WinResTarget_swriter \
))
else ifeq ($(OS),MACOSX)
$(eval $(call gb_Module_add_targets,desktop,\
Executable_officeloader \
))
else ifeq ($(OS),ANDROID)
else ifeq ($(OS),IOS)
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
# vim: set ts=4 sw=4 et:
|