mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
0c3f4dc20d
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
26 lines
728 B
Makefile
26 lines
728 B
Makefile
PKG_NAME=edbg
|
|
PKG_URL=https://github.com/ataradov/edbg
|
|
PKG_VERSION=42f1ed86c7094a405650dc8bd04ba2a79c399623
|
|
PKG_LICENSE=BSD-3-Clause
|
|
|
|
# manually set some RIOT env vars, so this Makefile can be called stand-alone
|
|
RIOTBASE ?= $(CURDIR)/../../..
|
|
RIOTTOOLS ?= $(CURDIR)/..
|
|
|
|
PKG_SOURCE_DIR = $(CURDIR)/bin
|
|
PKG_BUILD_OUT_OF_SOURCE = 0
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
all: $(CURDIR)/edbg
|
|
|
|
$(CURDIR)/edbg:
|
|
# Start edbg build in a clean environment, so variables set by RIOT's build process
|
|
# for cross compiling a specific target platform are reset and edbg can
|
|
# be built cleanly for the native platform.
|
|
env -i PATH="$(PATH)" TERM="$(TERM)" "$(MAKE)" -C "$(PKG_BUILD_DIR)"
|
|
mv $(PKG_BUILD_DIR)/edbg .
|
|
|
|
clean::
|
|
rm -f $(CURDIR)/edbg
|