mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 17:52:47 +01:00
13 lines
294 B
Makefile
13 lines
294 B
Makefile
|
CFLAGS += -Wno-unused-parameter
|
||
|
CFLAGS += -Wno-sign-compare
|
||
|
CFLAGS += -Wno-unused-function
|
||
|
CFLAGS += -Wno-maybe-uninitialized
|
||
|
|
||
|
ifeq (llvm,$(TOOLCHAIN))
|
||
|
CFLAGS += -Wno-empty-translation-unit
|
||
|
CFLAGS += -Wno-newline-eof
|
||
|
CFLAGS += -Wno-missing-braces
|
||
|
endif
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.base
|