Lines Matching refs:object
34 # the dep file will be overridden on the fly, when the object is compiled
73 # include. The dep file will be overridden on the fly, when the object is
86 # are the same as the CXXFLAGS and DEFS we want to use for this object. This
88 # overridden for one object file for them to differ. PCH_CXXFLAGS/PCH_DEFS
89 # should never be overridden on an object -- they should be the same as for the
105 $$(info . object flags : $$(sort $$(CXXFLAGS) $$(DEFS)))
144 # include. The dep file will be overridden on the fly, when the object is
178 # the dep file will be overridden on the fly, when the object is compiled
224 $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \
225 $(foreach object,$(COBJECTS),$(call gb_CObject_get_dep_target,$(object))) \
226 $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_target,$(object))) \
227 $(foreach object,$(CXXOBJECTS),$(call gb_CxxObject_get_dep_target,$(object))) \
228 $(foreach object,$(OBJCXXOBJECTS),$(call gb_ObjCxxObject_get_target,$(object))) \
229 $(foreach object,$(OBJCXXOBJECTS),$(call gb_ObjCxxObject_get_dep_target,$(object))) \
230 $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \
231 $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_dep_target,$(object))) \
248 $(foreach object,$(3),$(call gb_CObject_get_dep_target,$(object))) \
249 $(foreach object,$(4),$(call gb_CxxObject_get_dep_target,$(object))) \
250 $(foreach object,$(5),$(call gb_ObjCxxObject_get_dep_target,$(object)))\
251 $(foreach object,$(6),$(call gb_GenCxxObject_get_dep_target,$(object)))\
315 # be compiled with. They should never be overridden in a single object
320 # Since most variables are set on the linktarget and not on the object, the
321 # object learns about these setting via GNU makes scoping of target variables.
323 # linktarget. This for example means that you cannot build a single object
324 # alone, because then you would directly depend on the object.