Library.mk (3b02a9c8) | Library.mk (f006f9b4) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 86 unchanged lines hidden (view full) --- 95define gb_Library__forward_to_Linktarget 96gb_Library_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_Library__get_linktargetname,$$(1)),$$(2),$$(3)) 97 98endef 99 100gb_Library_get_runtime_filename = \ 101 $(or $(call gb_Library_get_dllname,$(1)),$(call gb_Library_get_filename,$(1))) 102 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 86 unchanged lines hidden (view full) --- 95define gb_Library__forward_to_Linktarget 96gb_Library_$(1) = $$(call gb_LinkTarget_$(1),$$(call gb_Library__get_linktargetname,$$(1)),$$(2),$$(3)) 97 98endef 99 100gb_Library_get_runtime_filename = \ 101 $(or $(call gb_Library_get_dllname,$(1)),$(call gb_Library_get_filename,$(1))) 102 |
103# FIXME: is there a better way? 104define gb_Library_is_udk_versioned 105$(or \ 106 $(filter $(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES))),$(gb_Library_RTVERLIBS)),\ 107 $(filter $(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES))),$(gb_Library_UNOVERLIBS)),\ 108 $(filter reg,$(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES)))),\ 109 $(filter store,$(patsubst %:$(notdir $(1)),%,$(filter %:$(notdir $(1)),$(gb_Library_FILENAMES))))) 110endef 111 |
|
103$(eval $(foreach method,\ 104 add_cobject \ 105 add_cobjects \ 106 add_cxxobject \ 107 add_cxxobjects \ 108 add_objcxxobject \ 109 add_objcxxobjects \ 110 add_exception_objects \ --- 31 unchanged lines hidden --- | 112$(eval $(foreach method,\ 113 add_cobject \ 114 add_cobjects \ 115 add_cxxobject \ 116 add_cxxobjects \ 117 add_objcxxobject \ 118 add_objcxxobjects \ 119 add_exception_objects \ --- 31 unchanged lines hidden --- |