Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/58468 )
Change subject: ich_descriptors_tool/Makefile: TARGET_OS is given as cmdline argument ......................................................................
ich_descriptors_tool/Makefile: TARGET_OS is given as cmdline argument
TARGET_OS is determined at the top level Makefile and pass to the ich_descriptors_tool Makefile. No need to determine TARGET_OS again.
Change-Id: I353c3de250167994a4aea1edfef57d839e900d78 Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.de --- M util/ich_descriptors_tool/Makefile 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/68/58468/1
diff --git a/util/ich_descriptors_tool/Makefile b/util/ich_descriptors_tool/Makefile index 168220c..f668c53 100644 --- a/util/ich_descriptors_tool/Makefile +++ b/util/ich_descriptors_tool/Makefile @@ -4,8 +4,6 @@ # This Makefile works standalone, but it is usually called from the main # Makefile in the flashrom directory.
-include ../../Makefile.include - PROGRAM=ich_descriptors_tool EXTRAINCDIRS = ../../ . DEPPATH = .dep @@ -34,8 +32,6 @@ FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1 endif
-override TARGET_OS := $(call c_macro_test, ../../Makefile.d/os_test.h) - ifeq ($(TARGET_OS), DOS) EXEC_SUFFIX := .exe # DJGPP has odd uint*_t definitions which cause lots of format string warnings.