mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
359 B
Makefile
16 lines
359 B
Makefile
MODULE = tensorflow-lite-micro-kernels
|
|
|
|
CXXEXFLAGS += -Wno-missing-field-initializers
|
|
CXXEXFLAGS += -Wno-strict-overflow
|
|
CXXEXFLAGS += -Wno-type-limits
|
|
CXXEXFLAGS += -Wno-unused-parameter
|
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
CXXEXFLAGS += -Wno-unused-const-variable
|
|
endif
|
|
|
|
SRCXXEXT = cc
|
|
SRCXXEXCLUDE = $(wildcard *_test.$(SRCXXEXT))
|
|
|
|
include $(RIOTBASE)/Makefile.base
|