mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cf64aba1c8
Support for TinyDTLS (0.8.6) is added together an example at 'examples/dtls-echo'.
13 lines
288 B
Makefile
13 lines
288 B
Makefile
PKG_NAME=tinydtls
|
|
PKG_URL=git://github.com/rfuentess/TinyDTLS.git
|
|
# PKG_VERSION=RIOT-OS
|
|
PKG_VERSION=f824b5553a865c186a9b41236be03358f0c8feaf
|
|
PKG_BUILDDIR ?= $(BINDIRBASE)/pkg/$(BOARD)/$(PKG_NAME)
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
$(MAKE) -C $(PKG_BUILDDIR)
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|