apps/makefile/implicit rules: completion the obj path

Change-Id: I2587a9e8de0852707fe6c775d487cc3a7849aef9
Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
chao.an 2020-05-25 16:36:42 +08:00 committed by Abdelatif Guettouche
parent 32a2207e86
commit 4ae186d89a

View File

@ -129,9 +129,9 @@ $(CXXOBJS): %$(SUFFIX)$(OBJEXT): %$(CXXEXT)
.built: $(OBJS)
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
$(call ARLOCK, "${shell cygpath -w $(BIN)}", $(OBJS))
$(call ARLOCK, "${shell cygpath -w $(BIN)}", $^)
else
$(call ARLOCK, $(BIN), $(OBJS))
$(call ARLOCK, $(BIN), $^)
endif
$(Q) touch $@