Update Makefile.config

Fix build on MSYS2 (MSYS)
This commit is contained in:
iahung2
2023-08-18 12:38:31 +07:00
committed by GitHub
parent 28449fd187
commit 8055bf07c2

View File

@@ -104,6 +104,11 @@ ifeq ($(OSNAME),Cygwin)
target:= Cygwin
endif # ($(OSNAME),Cygwin)
# MSYS2 (MSYS) is a fork of Cygwin
ifeq ($(OSNAME),Msys)
target:= Cygwin
endif # ($(OSNAME),Msys)
##############################################################################
#-=-=-=-=-=-=-=-=- You may want to change some values below -=-=-=-=-=-=-=-=-#