Kaydet (Commit) 1f7ee569 authored tarafından Michael Stahl's avatar Michael Stahl

gbuild: add missing directory dependencies for Obj{C,Cxx}Object

Change-Id: Ifafcbe6ed88a2cc18ecb1ff123adf974e10e5187
üst 3988a308
...@@ -957,6 +957,7 @@ $(call gb_ObjCObject_get_target,$(2)) : \ ...@@ -957,6 +957,7 @@ $(call gb_ObjCObject_get_target,$(2)) : \
ifeq ($(gb_FULLDEPS),$(true)) ifeq ($(gb_FULLDEPS),$(true))
$(call gb_LinkTarget_get_dep_target,$(1)) : OBJCOBJECTS += $(2) $(call gb_LinkTarget_get_dep_target,$(1)) : OBJCOBJECTS += $(2)
$(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCObject_get_dep_target,$(2)) $(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCObject_get_dep_target,$(2))
$(call gb_ObjCObject_get_dep_target,$(2)) :| $(dir $(call gb_ObjCObject_get_dep_target,$(2))).dir
endif endif
endef endef
...@@ -975,6 +976,7 @@ $(call gb_ObjCxxObject_get_target,$(2)) : \ ...@@ -975,6 +976,7 @@ $(call gb_ObjCxxObject_get_target,$(2)) : \
ifeq ($(gb_FULLDEPS),$(true)) ifeq ($(gb_FULLDEPS),$(true))
$(call gb_LinkTarget_get_dep_target,$(1)) : OBJCXXOBJECTS += $(2) $(call gb_LinkTarget_get_dep_target,$(1)) : OBJCXXOBJECTS += $(2)
$(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCxxObject_get_dep_target,$(2)) $(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCxxObject_get_dep_target,$(2))
$(call gb_ObjCxxObject_get_dep_target,$(2)) :| $(dir $(call gb_ObjCxxObject_get_dep_target,$(2))).dir
endif endif
endef endef
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment