mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
519 B
Makefile
20 lines
519 B
Makefile
PKG_NAME=edbg
|
|
PKG_URL=https://github.com/ataradov/edbg
|
|
PKG_VERSION=76f85abdea212ba23760723cce15e00ca4ae4b76
|
|
PKG_LICENSE=BSD-3-Clause
|
|
PKG_BUILDDIR=$(CURDIR)/bin
|
|
|
|
# CC and CXX variables are set by RIOT's build process to cross compiling for
|
|
# a specific target platfrom. Thus, we have to unset them to build edgb using
|
|
# the system C/C++ compilers - i.e, to avoid conflicts on macOS systems
|
|
CC=
|
|
CXX=
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)
|
|
mv $(PKG_BUILDDIR)/edbg .
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|