summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.de>2021-10-12 17:38:01 +0200
committerNico Huber <nico.h@gmx.de>2021-10-15 14:36:00 +0000
commitc9d947576bad1854fe7899e9bccc22ce0e649554 (patch)
treefddc509402faf876d2f25d8eba2ae740179b446f /Makefile
parent494180096c1125485549c9cc83c8291a3cb3d9b8 (diff)
downloadflashrom-c9d947576bad1854fe7899e9bccc22ce0e649554.tar.gz
flashrom-c9d947576bad1854fe7899e9bccc22ce0e649554.tar.bz2
flashrom-c9d947576bad1854fe7899e9bccc22ce0e649554.zip
buildsystem: handle the IS_WINDOWS macro
On Windows target systems set the IS_WINDOWS=1 macro by the buildsystem. Change-Id: I334708f2dec08ec9ca6ad4161fbd7fe22ac023a6 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/58277 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6de8f557d..31d40258d 100644
--- a/Makefile
+++ b/Makefile
@@ -192,6 +192,12 @@ $(call mark_unsupported,$(DEPENDS_ON_SERIAL))
$(call mark_unsupported,$(DEPENDS_ON_LIBUSB1) $(DEPENDS_ON_LIBFTDI) $(DEPENDS_ON_LIBJAYLINK))
endif
+ifeq ($(TARGET_OS), $(filter $(TARGET_OS), MinGW Cygwin))
+FEATURE_CFLAGS += -D'IS_WINDOWS=1'
+else
+FEATURE_CFLAGS += -D'IS_WINDOWS=0'
+endif
+
# FIXME: Should we check for Cygwin/MSVC as well?
ifeq ($(TARGET_OS), MinGW)
EXEC_SUFFIX := .exe