Files
platform-espressif32/examples/espidf-coap-server/components/libcoap/ext/tinydtls/autogen.sh
T
Valerii Koval 4a461f5221 Update examples
2023-01-06 14:29:59 +02:00

22 lines
603 B
Bash

#! /bin/sh -e
srcdir=`dirname "$0"`
GENERATED_FILES="aclocal.m4 ar-lib compile depcomp src/.dirstamp
Makefile aes/Makefile doc/Makefile ecc/Makefile
platform-specific/Makefile sha2/Makefile
tests/Makefile tests/unit-tests/Makefile
config.status configure config.log tinydtls.pc"
GENERATED_DIRS="autom4te.cache src/.deps"
if test "x$1" = "x--clean"; then
rm -f $GENERATED_FILES
rm -rf $GENERATED_DIRS
exit 0
fi
# create fake ar-lib if not present
test -e ar-lib || touch ar-lib
autoreconf --force --install --verbose "$srcdir"