2016-10-27 15:58:04 +02:00
|
|
|
PKG_NAME=tinydtls
|
2019-03-21 14:43:47 +01:00
|
|
|
PKG_URL=https://github.com/eclipse/tinydtls.git
|
2022-07-28 13:20:45 +02:00
|
|
|
PKG_VERSION=297fced854b652591b78113f0ba8d57ad9f934d9
|
2017-01-08 21:55:47 +01:00
|
|
|
PKG_LICENSE=EPL-1.0,EDL-1.0
|
2016-10-27 15:58:04 +02:00
|
|
|
|
2019-10-02 12:47:02 +02:00
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
|
2018-01-16 10:31:56 +01:00
|
|
|
CFLAGS += -Wno-implicit-fallthrough
|
2018-02-08 15:18:32 +01:00
|
|
|
# following is require due to known issue with newlib 2.4.x, see bug report:
|
|
|
|
# http://lists-archives.com/cygwin/97008-gettimeofday-not-defined.html
|
|
|
|
CFLAGS += -D_XOPEN_SOURCE=600
|
2018-01-16 10:31:56 +01:00
|
|
|
|
2019-06-27 15:18:37 +02:00
|
|
|
all:
|
2021-03-12 15:50:14 +01:00
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(PKG_SOURCE_DIR)/Makefile.riot
|
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/aes -f $(PKG_SOURCE_DIR)/aes/Makefile.riot
|
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/ecc -f $(PKG_SOURCE_DIR)/ecc/Makefile.riot
|
2016-10-27 15:58:04 +02:00
|
|
|
|
2018-08-03 17:56:34 +02:00
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
|
|
CFLAGS += -Wno-format-nonliteral
|
|
|
|
endif
|