You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
332 B
9 lines
332 B
# compile together the Arduino sketches of the application |
|
SKETCHES = $(wildcard $(APPDIR)/*.sketch) |
|
SRCDIR = $(RIOTBASE)/sys/arduino |
|
|
|
# run the Arduino pre-build script |
|
$(shell $(RIOTBASE)/dist/tools/arduino/pre_build.sh $(SRCDIR) $(APPDIR) $(SKETCHES)) |
|
|
|
# include the Arduino headers |
|
INCLUDES += -I$(RIOTBASE)/sys/arduino/include
|
|
|