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
|
2020-07-07 21:03:21 +02:00
|
|
|
PKG_VERSION=eda63f000c2280c7aba29abb60503130e8179e0a
|
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:
|
2020-06-13 20:58:27 +02:00
|
|
|
"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(PKG_SOURCE_DIR)/Makefile.riot
|
|
|
|
"$(MAKE)" -C $(PKG_SOURCE_DIR)/aes -f $(PKG_SOURCE_DIR)/aes/Makefile.riot
|
|
|
|
"$(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
|