topdir.mk: Move PREREQ definition into defs.mk
At present, the PREREQ-variable is effectively only used to detect if prerequiste packages haven't run "make all" before make is run in a given package. Also, it's only useful in $(TOPDIR). This commit splits the variable up into PREREQ_BUILD and PREREQ_RUN, and makes the variables available in every Makefile of a package by placing them in defs.mk instead of topdir.mk.
This also fixes a problem that PREREQ was cached before being filled, hence empty. Which effectively wasn't much of a problem, because it was basically unused, but still.
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
8712cbc7b5
commit
10bde0c05d
4 changed files with 19 additions and 10 deletions
|
|
@ -6,6 +6,8 @@
|
|||
CACHE_PROJECT_MK ?= .cache-project.mk
|
||||
CACHED_VARS_ONLY_PROJECT ?= \
|
||||
PROJECT \
|
||||
PREREQ_BUILD \
|
||||
PREREQ_RUN \
|
||||
PREREQ \
|
||||
VERSION \
|
||||
HEX_VERSION \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue