summaryrefslogtreecommitdiff
path: root/bridges/Module_bridges.mk
blob: 195d30615b217943bb10aae7d91addd43b0fb528 (plain)
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
# -*- 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,bridges))

$(eval $(call gb_Module_add_targets,bridges,\
	$(if $(filter TRUE,$(SOLAR_JAVA)),\
		Jar_java_uno \
		Library_java_uno \
	) \
	$(if $(and $(filter I,$(CPU)),$(filter C50 C52,$(COM))),\
		Library_cc50_solaris_intel \
	) \
	$(if $(filter C52S,$(COM)$(CPU)),\
		Library_cc50_solaris_sparc \
	) \
	$(if $(filter C52U,$(COM)$(CPU)),\
		Library_cc5_solaris_sparc64 \
	) \
	$(if $(filter GCCAIXP,$(COM)$(OS)$(CPU)),\
		Library_gcc3_aix_powerpc \
	) \
	$(if $(filter GCCIOSR,$(COM)$(OS)$(CPU)),\
		CustomTarget_gcc3_ios_arm \
		Library_gcc3_ios_arm \
	) \
	$(if $(filter GCCLINUXL,$(COM)$(OS)$(CPU)),\
		Library_gcc3_linux_alpha \
	) \
	$(if $(and $(filter GCCR,$(COM)$(CPU)),$(filter ANDROID LINUX,$(OS))),\
		Library_gcc3_linux_arm \
	) \
	$(if $(filter GCCLINUXH,$(COM)$(OS)$(CPU)),\
		Library_gcc3_linux_hppa \
	) \
	$(if $(filter GCCLINUXA,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_ia64 \
	) \
	$(if $(and $(filter GCCI,$(COM)$(CPU)),$(filter ANDROID DRAGONFLY FREEBSD LINUX NETBSD OPENBSD,$(OS))),\
		Library_gcc3_linux_intel \
	) \
	$(if $(filter GCCLINUX6,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_m68k \
	) \
	$(if $(filter GCCLINUXM,$(COM)$(OS)$(CPU)),\
		Library_gcc3_linux_mips \
	) \
	$(if $(filter GCCLINUXPPOWERPC64,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_powerpc64 \
	) \
	$(if $(filter GCCLINUXPPOWERPC,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_powerpc \
	) \
	$(if $(filter GCCLINUX3S390,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_s390 \
	) \
	$(if $(filter GCCLINUX3S390X,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_linux_s390x \
	) \
	$(if $(filter GCCLINUXS,$(COM)$(OS)$(CPU)),\
		Library_gcc3_linux_sparc \
	) \
	$(if $(and $(filter GCCX,$(COM)$(CPU)),$(filter DRAGONFLY FREEBSD LINUX NETBSD OPENBSD,$(OS))),\
		Library_gcc3_linux_x86-64 \
	) \
	$(if $(filter GCCMACOSXI,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_macosx_intel \
	) \
	$(if $(filter GCCMACOSXP,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_macosx_powerpc \
	) \
	$(if $(filter GCCSOLARISI,$(COM)$(OS)$(CPU)$(CPUNAME)),\
		Library_gcc3_solaris_intel \
	) \
	$(if $(filter GCCSOLARISS,$(COM)$(OS)$(CPU)),\
		Library_gcc3_solaris_sparc \
	) \
	$(if $(filter WNTGCC,$(OS)$(COM)),\
		Library_mingw_intel \
	) \
	$(if $(filter MSCI,$(COM)$(CPU)),\
		Library_msvc_win32_intel \
	) \
	$(if $(filter MSCX,$(COM)$(CPU)),\
		Library_msvc_win32_x86-64 \
	) \
))

# vim: set noet sw=4 ts=4: