xref: /aoo41x/main/solenv/gbuild/Library.mk (revision 44c25570)
17871dc3eSAndrew Rist#**************************************************************
27871dc3eSAndrew Rist#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
107871dc3eSAndrew Rist#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
127871dc3eSAndrew Rist#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
197871dc3eSAndrew Rist#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir
25cdf0e10cSrcweir# Library class
26cdf0e10cSrcweir
27cdf0e10cSrcweir# defined globally in TargetLocations.mk
28cdf0e10cSrcweir#  gb_Library_OUTDIRLOCATION := $(OUTDIR)/lib
29cdf0e10cSrcweir#  gb_Library_DLLDIR := $(WORKDIR)/LinkTarget/Library
30cdf0e10cSrcweir# defined by platform
31cdf0e10cSrcweir#  gb_Library_COMPONENTPREFIXES
32cdf0e10cSrcweir#  gb_Library_DEFS
33cdf0e10cSrcweir#  gb_Library_DLLFILENAMES
34cdf0e10cSrcweir#  gb_Library_FILENAMES
35cdf0e10cSrcweir#  gb_Library_Library_platform
36cdf0e10cSrcweir#  gb_Library_TARGETS
37cdf0e10cSrcweir
38cdf0e10cSrcweirgb_Library__get_linktargetname = Library/$(call gb_Library_get_filename,$(1))
39cdf0e10cSrcweir
40cdf0e10cSrcweir# EVIL: gb_StaticLibrary and gb_Library need the same deliver rule because they are indistinguishable on windows
41cdf0e10cSrcweir.PHONY : $(WORKDIR)/Clean/OutDir/lib/%$(gb_Library_PLAINEXT)
42cdf0e10cSrcweir$(WORKDIR)/Clean/OutDir/lib/%$(gb_Library_PLAINEXT) :
43cdf0e10cSrcweir	$(call gb_Helper_abbreviate_dirs,\
44cdf0e10cSrcweir		rm -f $(OUTDIR)/lib/$*$(gb_Library_PLAINEXT) \
45cdf0e10cSrcweir			$(AUXTARGETS))
46cdf0e10cSrcweir
47cdf0e10cSrcweir# EVIL: gb_StaticLibrary and gb_Library need the same deliver rule because they are indistinguishable on windows
48cdf0e10cSrcweir$(gb_Library_OUTDIRLOCATION)/%$(gb_Library_PLAINEXT) :
49cdf0e10cSrcweir	$(call gb_Helper_abbreviate_dirs,\
50cdf0e10cSrcweir		$(call gb_Deliver_deliver,$<,$@) \
51cdf0e10cSrcweir			$(foreach target,$(AUXTARGETS), && $(call gb_Deliver_deliver,$(dir $<)/$(notdir $(target)),$(target))))
52cdf0e10cSrcweir
53cdf0e10cSrcweirdefine gb_Library_Library
54cdf0e10cSrcweirifeq (,$$(findstring $(1),$$(gb_Library_KNOWNLIBS)))
55cdf0e10cSrcweir$$(eval $$(call gb_Output_info,Currently known libraries are: $(sort $(gb_Library_KNOWNLIBS)),ALL))
56cdf0e10cSrcweir$$(eval $$(call gb_Output_error,Library $(1) must be registered in Repository.mk))
57cdf0e10cSrcweirendif
58cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) : AUXTARGETS :=
59cdf0e10cSrcweir$(call gb_Library__Library_impl,$(1),$(call gb_Library__get_linktargetname,$(1)))
60cdf0e10cSrcweir$(call gb_Library_add_default_nativeres,$(1),default)
61cdf0e10cSrcweir
62cdf0e10cSrcweirendef
63cdf0e10cSrcweir
64cdf0e10cSrcweirdefine gb_Library__Library_impl
65cdf0e10cSrcweir$(call gb_LinkTarget_LinkTarget,$(2))
66cdf0e10cSrcweir$(call gb_LinkTarget_set_targettype,$(2),Library)
67cdf0e10cSrcweir$(call gb_LinkTarget_set_defs,$(2),\
68cdf0e10cSrcweir	$$(DEFS) \
69cdf0e10cSrcweir	$(gb_Library_DEFS) \
70cdf0e10cSrcweir)
71cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) : $(call gb_LinkTarget_get_target,$(2))
72cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_LinkTarget_get_clean_target,$(2))
73cdf0e10cSrcweir$(call gb_Library_Library_platform,$(1),$(2),$(gb_Library_DLLDIR)/$(call gb_Library_get_dllname,$(1)))
74cdf0e10cSrcweir$$(eval $$(call gb_Module_register_target,$(call gb_Library_get_target,$(1)),$(call gb_Library_get_clean_target,$(1))))
75cdf0e10cSrcweir$(call gb_Deliver_add_deliverable,$(call gb_Library_get_target,$(1)),$(call gb_LinkTarget_get_target,$(2)))
76cdf0e10cSrcweir
77cdf0e10cSrcweirendef
78cdf0e10cSrcweir
79cdf0e10cSrcweirdefine gb_Library_set_componentfile
80cdf0e10cSrcweir$(call gb_ComponentTarget_ComponentTarget,$(2),$(call gb_Library__get_componentprefix,$(1)),$(call gb_Library_get_runtime_filename,$(1)))
81cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) : $(call gb_ComponentTarget_get_outdir_target,$(2))
82cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_ComponentTarget_get_clean_target,$(2))
83cdf0e10cSrcweir
84cdf0e10cSrcweirendef
85cdf0e10cSrcweir
86cdf0e10cSrcweirgb_Library__get_componentprefix = \
87cdf0e10cSrcweir    $(call gb_Library__get_layer_componentprefix,$(call \
88cdf0e10cSrcweir        gb_Library_get_layer,$(1)))
89cdf0e10cSrcweir
90cdf0e10cSrcweirgb_Library__get_layer_componentprefix = \
91cdf0e10cSrcweir    $(patsubst $(1):%,%,$(or \
92cdf0e10cSrcweir        $(filter $(1):%,$(gb_Library_COMPONENTPREFIXES)), \
93cdf0e10cSrcweir        $(call gb_Output_error,no ComponentTarget native prefix for layer '$(1)')))
94cdf0e10cSrcweir
95cdf0e10cSrcweir
96cdf0e10cSrcweirdefine gb_Library__forward_to_Linktarget
97cdf0e10cSrcweirgb_Library_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_Library__get_linktargetname,$$(1)),$$(2),$$(3))
98cdf0e10cSrcweir
99cdf0e10cSrcweirendef
100cdf0e10cSrcweir
101cdf0e10cSrcweirgb_Library_get_runtime_filename = \
102cdf0e10cSrcweir $(or $(call gb_Library_get_dllname,$(1)),$(call gb_Library_get_filename,$(1)))
103cdf0e10cSrcweir
104cdf0e10cSrcweir$(eval $(foreach method,\
105cdf0e10cSrcweir	add_cobject \
106cdf0e10cSrcweir	add_cobjects \
107cdf0e10cSrcweir	add_cxxobject \
108cdf0e10cSrcweir	add_cxxobjects \
109cdf0e10cSrcweir	add_objcxxobject \
110cdf0e10cSrcweir	add_objcxxobjects \
111cdf0e10cSrcweir	add_exception_objects \
112cdf0e10cSrcweir	add_noexception_objects \
113cdf0e10cSrcweir	add_generated_exception_objects \
114cdf0e10cSrcweir	set_cflags \
115cdf0e10cSrcweir	set_cxxflags \
116cdf0e10cSrcweir	set_objcxxflags \
117cdf0e10cSrcweir	set_defs \
118cdf0e10cSrcweir	set_include \
119cdf0e10cSrcweir	set_ldflags \
120cdf0e10cSrcweir	set_library_path_flags \
121cdf0e10cSrcweir	add_linked_libs \
122cdf0e10cSrcweir	add_linked_static_libs \
123*44c25570SAndre Fischer	add_external_libs \
124cdf0e10cSrcweir	add_package_headers \
125cdf0e10cSrcweir	add_sdi_headers \
126cdf0e10cSrcweir	add_precompiled_header \
127cdf0e10cSrcweir,\
128cdf0e10cSrcweir	$(call gb_Library__forward_to_Linktarget,$(method))\
129cdf0e10cSrcweir))
130cdf0e10cSrcweir
131cdf0e10cSrcweir# vim: set noet sw=4 ts=4:
132