mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
eb47f1c537
This test application defines a packages which imports a very simple Arduino library that is used by test application to demonstrate how an Arduino library can be imported as package and used by an application.
12 lines
259 B
Makefile
12 lines
259 B
Makefile
PKG_NAME=talking_leds
|
|
PKG_URL=https://github.com/fabriziop/TalkingLED
|
|
PKG_VERSION=8ae4f2d0b736aa338f24e097dbaf876fbb385dbd
|
|
PKG_LICENSE=MIT
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)/src -f $(CURDIR)/Makefile.talking_leds
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|