xref: /aoo41x/main/solenv/gbuild/StaticLibrary.mk (revision 7871dc3e)
1*7871dc3eSAndrew Rist#**************************************************************
2*7871dc3eSAndrew Rist#
3*7871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*7871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*7871dc3eSAndrew Rist#  distributed with this work for additional information
6*7871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*7871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*7871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
9*7871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10*7871dc3eSAndrew Rist#
11*7871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*7871dc3eSAndrew Rist#
13*7871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*7871dc3eSAndrew Rist#  software distributed under the License is distributed on an
15*7871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*7871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
17*7871dc3eSAndrew Rist#  specific language governing permissions and limitations
18*7871dc3eSAndrew Rist#  under the License.
19*7871dc3eSAndrew Rist#
20*7871dc3eSAndrew Rist#**************************************************************
21*7871dc3eSAndrew Rist
22*7871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir
25cdf0e10cSrcweir# Static Library class
26cdf0e10cSrcweir
27cdf0e10cSrcweir# defined globally in gbuild.mk
28cdf0e10cSrcweir#  gb_StaticLibrary_OUTDIRLOCATION := $(OUTDIR)/lib
29cdf0e10cSrcweir# defined by platform
30cdf0e10cSrcweir#  gb_StaticLibrary_DEFS
31cdf0e10cSrcweir#  gb_StaticLibrary_FILENAMES
32cdf0e10cSrcweir#  gb_StaticLibrary_TARGETS
33cdf0e10cSrcweir
34cdf0e10cSrcweirgb_StaticLibrary__get_linktargetname = StaticLibrary/$(call gb_StaticLibrary_get_filename,$(1))
35cdf0e10cSrcweir
36cdf0e10cSrcweir# EVIL: gb_StaticLibrary and gb_Library need the same deliver rule because they are indistinguishable on windows
37cdf0e10cSrcweir.PHONY : $(WORKDIR)/Clean/OutDir/lib/%$(gb_StaticLibrary_PLAINEXT)
38cdf0e10cSrcweir$(WORKDIR)/Clean/OutDir/lib/%$(gb_StaticLibrary_PLAINEXT) :
39cdf0e10cSrcweir	$(call gb_Helper_abbreviate_dirs,\
40cdf0e10cSrcweir		rm -f $(OUTDIR)/lib/$*$(gb_StaticLibrary_PLAINEXT) \
41cdf0e10cSrcweir			$(AUXTARGETS))
42cdf0e10cSrcweir
43cdf0e10cSrcweir# EVIL: gb_StaticLibrary and gb_Library need the same deliver rule because they are indistinguishable on windows
44cdf0e10cSrcweir$(gb_StaticLibrary_OUTDIRLOCATION)/%$(gb_StaticLibrary_PLAINEXT) :
45cdf0e10cSrcweir	$(call gb_Helper_abbreviate_dirs,\
46cdf0e10cSrcweir		$(call gb_Deliver_deliver,$<,$@) \
47cdf0e10cSrcweir			$(foreach target,$(AUXTARGETS), && $(call gb_Deliver_deliver,$(dir $<)/$(notdir $(target)),$(target))))
48cdf0e10cSrcweir
49cdf0e10cSrcweirdefine gb_StaticLibrary_StaticLibrary
50cdf0e10cSrcweirifeq (,$$(findstring $(1),$$(gb_StaticLibrary_KNOWNLIBS)))
51cdf0e10cSrcweir$$(eval $$(call gb_Output_info,Currently known static libraries are: $(sort $(gb_StaticLibrary_KNOWNLIBS)),ALL))
52cdf0e10cSrcweir$$(eval $$(call gb_Output_error,Static library $(1) must be registered in Repository.mk))
53cdf0e10cSrcweirendif
54cdf0e10cSrcweir$(call gb_StaticLibrary_get_target,$(1)) : AUXTARGETS :=
55cdf0e10cSrcweir$(call gb_StaticLibrary__StaticLibrary_impl,$(1),$(call gb_StaticLibrary__get_linktargetname,$(1)))
56cdf0e10cSrcweir
57cdf0e10cSrcweirendef
58cdf0e10cSrcweir
59cdf0e10cSrcweirdefine gb_StaticLibrary__StaticLibrary_impl
60cdf0e10cSrcweir$(call gb_LinkTarget_LinkTarget,$(2))
61cdf0e10cSrcweir$(call gb_LinkTarget_set_targettype,$(2),StaticLibrary)
62cdf0e10cSrcweir$(call gb_LinkTarget_set_defs,$(2),\
63cdf0e10cSrcweir	$$(DEFS) \
64cdf0e10cSrcweir	$(gb_StaticLibrary_DEFS) \
65cdf0e10cSrcweir)
66cdf0e10cSrcweir$(call gb_StaticLibrary_get_target,$(1)) : $(call gb_LinkTarget_get_target,$(2))
67cdf0e10cSrcweir$(call gb_StaticLibrary_get_clean_target,$(1)) : $(call gb_LinkTarget_get_clean_target,$(2))
68cdf0e10cSrcweir$(call gb_StaticLibrary_StaticLibrary_platform,$(1),$(2))
69cdf0e10cSrcweir$$(eval $$(call gb_Module_register_target,$(call gb_StaticLibrary_get_target,$(1)),$(call gb_StaticLibrary_get_clean_target,$(1))))
70cdf0e10cSrcweir$(call gb_Deliver_add_deliverable,$(call gb_StaticLibrary_get_target,$(1)),$(call gb_LinkTarget_get_target,$(2)))
71cdf0e10cSrcweir
72cdf0e10cSrcweirendef
73cdf0e10cSrcweir
74cdf0e10cSrcweirdefine gb_StaticLibrary_forward_to_Linktarget
75cdf0e10cSrcweirgb_StaticLibrary_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_StaticLibrary__get_linktargetname,$$(1)),$$(2),$$(3))
76cdf0e10cSrcweir
77cdf0e10cSrcweirendef
78cdf0e10cSrcweir
79cdf0e10cSrcweir$(eval $(foreach method,\
80cdf0e10cSrcweir	add_cobject \
81cdf0e10cSrcweir	add_cobjects \
82cdf0e10cSrcweir	add_cxxobject \
83cdf0e10cSrcweir	add_cxxobjects \
84cdf0e10cSrcweir	add_objcxxobject \
85cdf0e10cSrcweir	add_objcxxobjects \
86cdf0e10cSrcweir	add_exception_objects \
87cdf0e10cSrcweir	add_noexception_objects \
88cdf0e10cSrcweir	add_generated_exception_objects \
89cdf0e10cSrcweir	set_cflags \
90cdf0e10cSrcweir	set_cxxflags \
91cdf0e10cSrcweir	set_objcxxflags \
92cdf0e10cSrcweir	set_defs \
93cdf0e10cSrcweir	set_include \
94cdf0e10cSrcweir	set_ldflags \
95cdf0e10cSrcweir	set_library_path_flags \
96cdf0e10cSrcweir	add_linked_libs \
97cdf0e10cSrcweir	add_linked_static_libs \
98cdf0e10cSrcweir	add_package_headers \
99cdf0e10cSrcweir	add_sdi_headers \
100cdf0e10cSrcweir	add_precompiled_header \
101cdf0e10cSrcweir,\
102cdf0e10cSrcweir	$(call gb_StaticLibrary_forward_to_Linktarget,$(method))\
103cdf0e10cSrcweir))
104cdf0e10cSrcweir
105cdf0e10cSrcweir# vim: set noet sw=4 ts=4:
106