mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
281 B
Makefile
14 lines
281 B
Makefile
PKG_NAME=edbg
|
|
PKG_URL=https://github.com/ataradov/edbg
|
|
PKG_VERSION=935bb4b1efd0e2f8434cf97443e0d95b9e02ec1d
|
|
PKG_LICENSE=BSD-3-Clause
|
|
PKG_BUILDDIR=$(CURDIR)/bin
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)
|
|
mv $(PKG_BUILDDIR)/edbg .
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|