DEPENDS 在 Makefile 中的确切作用是什么?

What is the exact role of the DEPENDS in Makefile?

这是我的 Makefile 示例。

define Package/luci-app-myapp
   SECTION:=luci
   CATEGORY:=LuCI
   SUBMENU:=3. Applications
   TITLE:=GUI for myapp package
   PKGARCH:=all
   DEPENDS:=+myapp
endef

DEPENDS 在此 Makefile 中的确切作用是什么? 哪些元素可以是DEPENDS的值?

DEPENDS 基本上是一个变量。在 openwrt 中,这个变量用于定义包之间的依赖关系。 这个变量的详细使用记录在openwrt link