Revert "Remove libapps.a from LDLIBS"

It was necessary for PROTECTED build.

This reverts commit 4ee39e208048f075860179a0a2b60c3a651cf16e.
This commit is contained in:
YAMAMOTO Takashi 2020-02-26 14:08:40 +09:00 committed by Xiang Xiao
parent 2abf0f50e1
commit 9d59f5e524

View File

@ -152,3 +152,11 @@ endif
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" "$(APPDIR)$(DELIM)include"}
CXXFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" "$(APPDIR)$(DELIM)include"}
ifneq ($(CONFIG_BUILD_KERNEL),y)
ifeq ($(WINTOOL),y)
LDLIBS ?= "${shell cygpath -w $(BIN)}"
else
LDLIBS ?= $(BIN)
endif
endif