From: Ákos Kovács
CONFIG_NO_* variables replaced with the lnot logical function
Signed-off-by: Ákos Kovács
---
Makefile.target | 14 --
1 files changed, 4 insertions(+), 10 deletions(-)
diff --git a/Makefile.target b/Makefile.target
index ce4391f..180f1ec 100644
--- a/Makefile.t
From: Ákos Kovács
Makefile.target: Build gdbstub-xml.o only when
TARGET_XML_FILES is not empty
Signed-off-by: Ákos Kovács
---
Makefile.target |2 +-
default-configs/arm-linux-user.mak|2 --
default-configs/arm-softmmu.mak |1 -
default-co
From: Ákos Kovács
New functions are added: lnot, land, lor, lif, eq, ne, isempty, notempty
Example usage:
obj-$(call lor,$(CONFIG_LINUX),$(CONFIG_BSD)) += feature.o
Signed-off-by: Ákos Kovács
---
rules.mak | 16
1 files changed, 16 insertions(+), 0 deletions(-)
diff --
From: Ákos Kovács
Patch 1:
Add new logical functions to rules.mak, to eliminate and simplify
variables in the Makefiles.
Example usage:
obj-$(call lor,$(CONFIG_LINUX),$(CONFIG_BSD)) += feature.o
Patch 2:
Remove CONFIG_GDBSTUB_XML from default_configs/*.mak files
and ma