mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
b05fa5991f
emlib is a subset of gecko_sdk. gecko_sdk contains more.
16 lines
323 B
Makefile
16 lines
323 B
Makefile
PKG_NAME=gecko_sdk
|
|
PKG_URL=https://github.com/basilfx/RIOT-gecko-sdk
|
|
PKG_VERSION=f8a90e4db4680984b5f9d3dd44ca528772458456
|
|
PKG_LICENSE=Zlib
|
|
|
|
ifneq ($(CPU),efm32)
|
|
$(error This package can only be used with EFM32 CPUs)
|
|
endif
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)/dist
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|