1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 # Static Library class
23 # defined globally in gbuild.mk
25 # gb_StaticLibrary_get_filename
26 # gb_StaticLibrary_PLAINEXT
27 # gb_StaticLibrary_StaticLibrary_platform
30 # EVIL: gb_StaticLibrary and gb_Library need the same deliver rule because they are indistinguishable on windows
31 .PHONY
: $(WORKDIR
)/Clean
/StaticLibrary
/%
32 $(WORKDIR
)/Clean
/StaticLibrary
/% :
33 $(call gb_Helper_abbreviate_dirs
,\
36 define gb_StaticLibrary_StaticLibrary
37 $(call gb_StaticLibrary__StaticLibrary_impl
,$(1),$(call gb_StaticLibrary_get_linktarget
,$(1)))
41 # call gb_StaticLibrary__StaticLibrary_impl,staticlib,linktarget
42 define gb_StaticLibrary__StaticLibrary_impl
43 $(call gb_LinkTarget_LinkTarget
,$(2),StaticLibrary_
$(1),NONE
)
44 $(call gb_LinkTarget_set_targettype
,$(2),StaticLibrary
)
45 $(call gb_StaticLibrary_get_clean_target
,$(1)) : $(call gb_LinkTarget_get_clean_target
,$(2))
46 $(call gb_StaticLibrary_get_clean_target
,$(1)) : AUXTARGETS
:=
47 $(call gb_StaticLibrary_StaticLibrary_platform
,$(1),$(2))
48 $$(eval
$$(call gb_Module_register_target
,$(call gb_StaticLibrary_get_target
,$(1)),$(call gb_StaticLibrary_get_clean_target
,$(1))))
49 $(call gb_Helper_make_userfriendly_targets
,$(1),StaticLibrary
)
53 # this is a crude hack to "build" header files with include-what-you-use
54 define gb_StaticLibrary__add_iwyu_header
55 $(call gb_LinkTarget_get_target
,$(call gb_StaticLibrary_get_linktarget
,$(1))) : $(call gb_GenCxxObject_get_target
,$(basename $(2)))
56 $(call gb_GenCxxObject_get_target
,$(basename $(2))) : $(SRCDIR
)/$(2)
57 $(call gb_GenCxxObject_get_target
,$(basename $(2))) : WARNINGS_NOT_ERRORS
:= $(true
)
58 $(call gb_GenCxxObject_get_target
,$(basename $(2))) : GEN_CXX_SOURCE
:= $(SRCDIR
)/$(2)
61 define gb_StaticLibrary__add_iwyu_headers
62 $(foreach file
,$(2),$(call gb_StaticLibrary__add_iwyu_header
,$(1),$(file
)))
65 define gb_StaticLibrary_forward_to_Linktarget
66 gb_StaticLibrary_
$(1) = $$(call gb_LinkTarget_
$(1),$$(call gb_StaticLibrary_get_linktarget
,$$(1)),$$(2),$$(3),StaticLibrary_
$$(1))
70 $(eval
$(foreach method
,\
79 add_exception_objects \
80 add_x64_generated_exception_objects \
81 add_generated_cobjects \
82 add_x64_generated_cobjects \
83 add_generated_cxxobjects \
84 add_generated_exception_objects \
95 set_library_path_flags \
100 use_internal_bootstrap_api \
101 use_internal_comprehensive_api \
108 use_external_project \
109 use_static_libraries \
111 set_precompiled_header \
112 set_warnings_not_errors \
114 set_generated_cxx_suffix \
116 $(call gb_StaticLibrary_forward_to_Linktarget
,$(method
))\
119 # vim: set noet sw=4: