xref: /trunk/main/solenv/gbuild/StaticLibrary.mk (revision 7f6ffbef)
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# 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)
62b63233d8Sdamjan$(call gb_LinkTarget_add_defs,$(2),\
63cdf0e10cSrcweir	$(gb_StaticLibrary_DEFS) \
64cdf0e10cSrcweir)
65cdf0e10cSrcweir$(call gb_StaticLibrary_get_target,$(1)) : $(call gb_LinkTarget_get_target,$(2))
66cdf0e10cSrcweir$(call gb_StaticLibrary_get_clean_target,$(1)) : $(call gb_LinkTarget_get_clean_target,$(2))
67cdf0e10cSrcweir$(call gb_StaticLibrary_StaticLibrary_platform,$(1),$(2))
68cdf0e10cSrcweir$$(eval $$(call gb_Module_register_target,$(call gb_StaticLibrary_get_target,$(1)),$(call gb_StaticLibrary_get_clean_target,$(1))))
69b63233d8Sdamjan$(call gb_Deliver_add_deliverable,$(call gb_StaticLibrary_get_target,$(1)),$(call gb_LinkTarget_get_target,$(2)),$(1))
70cdf0e10cSrcweir
71cdf0e10cSrcweirendef
72cdf0e10cSrcweir
73cdf0e10cSrcweirdefine gb_StaticLibrary_forward_to_Linktarget
74390c74e1SDamjan Jovanovicgb_StaticLibrary_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_StaticLibrary__get_linktargetname,$$(1)),$$(2),$$(3),$$(4))
75cdf0e10cSrcweir
76cdf0e10cSrcweirendef
77cdf0e10cSrcweir
78cdf0e10cSrcweir$(eval $(foreach method,\
79cdf0e10cSrcweir	add_cobject \
80cdf0e10cSrcweir	add_cobjects \
81cdf0e10cSrcweir	add_cxxobject \
82cdf0e10cSrcweir	add_cxxobjects \
83cdf0e10cSrcweir	add_objcxxobject \
84cdf0e10cSrcweir	add_objcxxobjects \
85cdf0e10cSrcweir	add_exception_objects \
86cdf0e10cSrcweir	add_noexception_objects \
87*7f6ffbefSDamjan Jovanovic	add_generated_cobjects \
88cdf0e10cSrcweir	add_generated_exception_objects \
89b63233d8Sdamjan	add_cflags \
90cdf0e10cSrcweir	set_cflags \
91b63233d8Sdamjan	add_cxxflags \
92cdf0e10cSrcweir	set_cxxflags \
93b63233d8Sdamjan	add_objcxxflags \
94cdf0e10cSrcweir	set_objcxxflags \
95b63233d8Sdamjan	add_defs \
96cdf0e10cSrcweir	set_defs \
97cdf0e10cSrcweir	set_include \
98b63233d8Sdamjan	add_ldflags \
99cdf0e10cSrcweir	set_ldflags \
100b63233d8Sdamjan	add_libs \
101cdf0e10cSrcweir	set_library_path_flags \
102b63233d8Sdamjan	add_api \
103cdf0e10cSrcweir	add_linked_libs \
104cdf0e10cSrcweir	add_linked_static_libs \
105cdf0e10cSrcweir	add_package_headers \
106cdf0e10cSrcweir	add_sdi_headers \
107cdf0e10cSrcweir	add_precompiled_header \
108cdf0e10cSrcweir,\
109cdf0e10cSrcweir	$(call gb_StaticLibrary_forward_to_Linktarget,$(method))\
110cdf0e10cSrcweir))
111cdf0e10cSrcweir
112cdf0e10cSrcweir# vim: set noet sw=4 ts=4:
113