mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
e6bc8d773e
Update to the latest upstream release https://www.wolfssl.com/docs/wolfssl-changelog/ This unfortunetaly introduced some unused parameter warnings, so disable the warning via CFLAGS.
16 lines
519 B
Makefile
16 lines
519 B
Makefile
PKG_NAME=wolfssl
|
|
PKG_URL=https://github.com/wolfssl/wolfssl.git
|
|
PKG_VERSION=3f13b49fa318fbd3216d7da36d942e7c276d3413 # v4.3.0
|
|
PKG_LICENSE=GPLv2
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
all: # Nothing to do here when building
|
|
|
|
prepare:
|
|
cp Makefile.wolfssl $(PKG_BUILDDIR)/src/Makefile
|
|
cp Makefile.wolfcrypt $(PKG_BUILDDIR)/wolfcrypt/src/Makefile
|
|
touch $(PKG_BUILDDIR)/wolfssl.a
|
|
cp Makefile.wolfcrypt-test $(PKG_BUILDDIR)/wolfcrypt/test/Makefile
|
|
cp Makefile.wolfcrypt-benchmark $(PKG_BUILDDIR)/wolfcrypt/benchmark/Makefile
|