Makefile: replace INCDIR to INCDIR_PREFIX

Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
This commit is contained in:
yinshengkai 2022-11-08 18:39:52 +08:00 committed by Xiang Xiao
parent dbc757d79d
commit ee4d8b738f
54 changed files with 89 additions and 104 deletions

View file

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