mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
326 B
Makefile
18 lines
326 B
Makefile
MODULE = tensorflow-lite-hello_world
|
|
|
|
CXXEXFLAGS += -Wno-type-limits
|
|
CXXEXFLAGS += -Wno-unused-parameter
|
|
|
|
SRCXXEXT = cc
|
|
SRCXXEXCLUDE = $(wildcard *_test.$(SRCXXEXT))
|
|
|
|
NO_AUTO_SRC = 1
|
|
SRCXX = \
|
|
constants.cc \
|
|
main_functions.cc \
|
|
output_handler.cc \
|
|
sine_model_data.cc \
|
|
#
|
|
|
|
include $(RIOTBASE)/Makefile.base
|