mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
We cannot fix package headers downstream, so we can just as well tell the compiler to not warn about them.
11 lines
448 B
Makefile
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
|