xref: /trunk/main/solenv/gbuild/Library.mk (revision f006f9b4bf7a88dbc51e454be55c20f34b39451b)
17871dc3eSAndrew Rist#**************************************************************
2cdf0e10cSrcweir#
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
10cdf0e10cSrcweir#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir#
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.
19cdf0e10cSrcweir#
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)
67b63233d8Sdamjan$(call gb_LinkTarget_add_defs,$(2),\
68cdf0e10cSrcweir    $(gb_Library_DEFS) \
69cdf0e10cSrcweir)
70cdf0e10cSrcweir$(call gb_Library_get_target,$(1)) : $(call gb_LinkTarget_get_target,$(2))
71cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_LinkTarget_get_clean_target,$(2))
72cdf0e10cSrcweir$(call gb_Library_Library_platform,$(1),$(2),$(gb_Library_DLLDIR)/$(call gb_Library_get_dllname,$(1)))
73cdf0e10cSrcweir$$(eval $$(call gb_Module_register_target,$(call gb_Library_get_target,$(1)),$(call gb_Library_get_clean_target,$(1))))
74b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(call gb_Library_get_target,$(1)),$(call gb_LinkTarget_get_target,$(2)),$(1))
75cdf0e10cSrcweir
76cdf0e10cSrcweirendef
77cdf0e10cSrcweir
78cdf0e10cSrcweirdefine gb_Library_set_componentfile
79cdf0e10cSrcweir$(call gb_ComponentTarget_ComponentTarget,$(2),$(call gb_Library__get_componentprefix,$(1)),$(call gb_Library_get_runtime_filename,$(1)))
80b63233d8Sdamjan$(call gb_Library_get_target,$(1)) : $(call gb_ComponentTarget_get_outdir_target,$(2)) $(call gb_ComponentTarget_get_outdir_inbuild_target,$(2))
81cdf0e10cSrcweir$(call gb_Library_get_clean_target,$(1)) : $(call gb_ComponentTarget_get_clean_target,$(2))
82cdf0e10cSrcweir
83cdf0e10cSrcweirendef
84cdf0e10cSrcweir
85cdf0e10cSrcweirgb_Library__get_componentprefix = \
86cdf0e10cSrcweir    $(call gb_Library__get_layer_componentprefix,$(call \
87cdf0e10cSrcweir        gb_Library_get_layer,$(1)))
88cdf0e10cSrcweir
89cdf0e10cSrcweirgb_Library__get_layer_componentprefix = \
90cdf0e10cSrcweir    $(patsubst $(1):%,%,$(or \
91cdf0e10cSrcweir        $(filter $(1):%,$(gb_Library_COMPONENTPREFIXES)), \
92cdf0e10cSrcweir        $(call gb_Output_error,no ComponentTarget native prefix for layer '$(1)')))
93cdf0e10cSrcweir
94cdf0e10cSrcweir
95cdf0e10cSrcweirdefine gb_Library__forward_to_Linktarget
96cdf0e10cSrcweirgb_Library_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_Library__get_linktargetname,$$(1)),$$(2),$$(3))
97cdf0e10cSrcweir
98cdf0e10cSrcweirendef
99cdf0e10cSrcweir
100cdf0e10cSrcweirgb_Library_get_runtime_filename = \
101cdf0e10cSrcweir $(or $(call gb_Library_get_dllname,$(1)),$(call gb_Library_get_filename,$(1)))
102cdf0e10cSrcweir
103*f006f9b4SDamjan Jovanovic# FIXME: is there a better way?
104*f006f9b4SDamjan Jovanovicdefine gb_Library_is_udk_versioned
105*f006f9b4SDamjan Jovanovic$(or \
106*f006f9b4SDamjan Jovanovic    $(filter $(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES))),$(gb_Library_RTVERLIBS)),\
107*f006f9b4SDamjan Jovanovic    $(filter $(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES))),$(gb_Library_UNOVERLIBS)),\
108*f006f9b4SDamjan Jovanovic    $(filter reg,$(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES)))),\
109*f006f9b4SDamjan Jovanovic    $(filter store,$(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES)))))
110*f006f9b4SDamjan Jovanovicendef
111*f006f9b4SDamjan Jovanovic
112cdf0e10cSrcweir$(eval $(foreach method,\
113cdf0e10cSrcweir    add_cobject \
114cdf0e10cSrcweir    add_cobjects \
115cdf0e10cSrcweir    add_cxxobject \
116cdf0e10cSrcweir    add_cxxobjects \
117cdf0e10cSrcweir    add_objcxxobject \
118cdf0e10cSrcweir    add_objcxxobjects \
119cdf0e10cSrcweir    add_exception_objects \
120cdf0e10cSrcweir    add_noexception_objects \
121cdf0e10cSrcweir    add_generated_exception_objects \
122b63233d8Sdamjan    set_yaccflags \
123b63233d8Sdamjan    add_cflags \
124cdf0e10cSrcweir    set_cflags \
125b63233d8Sdamjan    add_cxxflags \
126cdf0e10cSrcweir    set_cxxflags \
127b63233d8Sdamjan    add_objcxxflags \
128cdf0e10cSrcweir    set_objcxxflags \
129b63233d8Sdamjan    add_defs \
130cdf0e10cSrcweir    set_defs \
131cdf0e10cSrcweir    set_include \
132b63233d8Sdamjan    add_ldflags \
133cdf0e10cSrcweir    set_ldflags \
134b63233d8Sdamjan    add_libs \
135cdf0e10cSrcweir    set_library_path_flags \
136b63233d8Sdamjan    add_api \
137cdf0e10cSrcweir    add_linked_libs \
138cdf0e10cSrcweir    add_linked_static_libs \
13944c25570SAndre Fischer    add_external_libs \
140b63233d8Sdamjan    use_external \
141b63233d8Sdamjan    use_externals \
142cdf0e10cSrcweir    add_package_headers \
143cdf0e10cSrcweir    add_sdi_headers \
144cdf0e10cSrcweir    add_precompiled_header \
1453b02a9c8SDamjan Jovanovic    set_versionmap \
146cdf0e10cSrcweir,\
147cdf0e10cSrcweir    $(call gb_Library__forward_to_Linktarget,$(method))\
148cdf0e10cSrcweir))
149cdf0e10cSrcweir
150cdf0e10cSrcweir# vim: set noet sw=4 ts=4:
151