mirror of
https://github.com/openharmony/third_party_libcoap.git
synced 2026-07-21 14:15:52 -04:00
b0e2e05964
Signed-off-by: wanghan985406 <wanghan76@huawei.com>
37 lines
1.0 KiB
Bash
Executable File
37 lines
1.0 KiB
Bash
Executable File
#! /bin/sh
|
|
|
|
# This script creates a libcoap archive, unpacks it and does an
|
|
# out-of-tree build and installation afterwards.
|
|
#
|
|
# Copyright (C) 2021-2023 Olaf Bergmann <bergmann@tzi.org>
|
|
#
|
|
# This file is part of the CoAP C library libcoap. Please see README
|
|
# and COPYING for terms of use.
|
|
#
|
|
|
|
PREFIX=--prefix=`pwd`/libcoap-install
|
|
ARCHIVE=`ls -1t libcoap-*.tar.bz2 |head -1`
|
|
err=$?
|
|
echo $ARCHIVE
|
|
if test $err = 0 -a "x$ARCHIVE" != "x"; then
|
|
DIR=`pwd`/`tar taf $ARCHIVE |cut -d/ -f1|head -1`
|
|
tar xaf $ARCHIVE && cd $DIR && \
|
|
$DIR/configure $PREFIX --enable-tests --enable-silent-rules --enable-documentation --enable-examples --disable-dtls && \
|
|
make EXTRA_CFLAGS=-Werror && make install EXTRA_CFLAGS=-Werror
|
|
err=$?
|
|
if [ $err = 0 ] ; then
|
|
make -C $DIR/examples/lwip EXTRA_CFLAGS=-Werror
|
|
err=$?
|
|
fi
|
|
if [ $err = 0 ] ; then
|
|
make -C $DIR/examples/contiki
|
|
err=$?
|
|
fi
|
|
if [ $err = 0 ] ; then
|
|
make -C $DIR/examples/riot
|
|
err=$?
|
|
fi
|
|
fi
|
|
|
|
exit $err
|