mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
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>
This commit is contained in:

committed by
Nico Huber

parent
494180096c
commit
c9d947576b
6
Makefile
6
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
|
||||
|
Reference in New Issue
Block a user