Makefile: Remove INCDIROPT

This option, which resolves to -w when CONFIG_CYGWIN_WINTOOL is
configured, is now appended to INCDIR in tools/Config.mk.

See git commit # 5eae32577e5d5226e5d3027c169eeb369f83f77d in the main
This commit is contained in:
yinshengkai 2022-10-25 00:03:52 +08:00 committed by Xiang Xiao
parent ffab06c6c5
commit 2c3c2edcb7
26 changed files with 55 additions and 55 deletions

View file

@ -23,6 +23,6 @@ CONFIGURED_APPS += $(APPDIR)/math/libtommath
# It allows `<tommath.h>` import.
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
CXXFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
CXXFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/math/libtommath/libtommath}
endif