1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00
Marian Buschsieweke f46ab1cb67
pkg: Use -isystem instead of -I for pkg headers
We cannot fix package headers downstream, so we can just as well tell
the compiler to not warn about them.
2025-04-10 13:37:14 +02:00

11 lines
448 B
Makefile

MODULE := semtech_loramac_contrib
# Use -isystem instead of -I to disable warnings about these headers
INCLUDES += -isystem$(PKGDIRBASE)/semtech-loramac/src/mac \
-isystem$(PKGDIRBASE)/semtech-loramac/src/boards \
-isystem$(PKGDIRBASE)/semtech-loramac/src/radio \
-isystem$(PKGDIRBASE)/semtech-loramac/src/system/crypto \
-isystem$(PKGDIRBASE)/semtech-loramac/src
include $(RIOTBASE)/Makefile.base