1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# Makefile
#
# Copyright (C) 2010-2024 Olaf Bergmann <bergmann@tzi.org> and others
#
# SPDX-License-Identifier: BSD-2-Clause
#
# This file is part of the CoAP C library libcoap. Please see README and
# COPYING for terms of use.
RIOT=RIOT
TARGET?=native
all: RIOT pkg examples client server tests
RIOT:
git clone --depth 1 https://github.com/RIOT-OS/RIOT.git $@
pkg:
@IN_GIT=`git rev-parse --is-inside-work-tree` ; \
if [ "$${IN_GIT}" = "true" ] ; then \
rm -rf pkg_libcoap/patches ; \
mkdir -p pkg_libcoap/patches ; \
RIOT_HASH=`grep PKG_VERSION= pkg_libcoap/Makefile | cut -d= -f2` ; \
git pull --unshallow > /dev/null 2>&1 ; \
if [ ! -z "$${RIOT_HASH}" ] ; then \
(cd pkg_libcoap/patches ; git format-patch -n $${RIOT_HASH}) ; \
fi ; \
COMMIT_FILE=pkg_libcoap/patches/9999-Not-Yet-Commited.patch ; \
WC=`git diff HEAD -p --stat | wc -l` ; \
if [ "$${WC}" != 0 ] ; then \
echo "From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001" > $${COMMIT_FILE} ; \
echo "From: Internal <test@test.com>" >> $${COMMIT_FILE} ; \
echo "Date: `date`" >> $${COMMIT_FILE} ; \
echo "Subject: [PATCH 1/1] RIOT: To commit" >> $${COMMIT_FILE} ; \
echo "" >> $${COMMIT_FILE} ; \
echo "---" >> $${COMMIT_FILE} ; \
git diff HEAD -p --stat >> $${COMMIT_FILE} ; \
echo "9999-Not-Yet-Commited.patch" ; \
fi ; \
fi
rm -rf RIOT/pkg/libcoap && mkdir RIOT/pkg/libcoap
cd pkg_libcoap && cp -r * ../RIOT/pkg/libcoap
@HAVE_KCONFIG=`grep libcoap/Kconfig RIOT/pkg/Kconfig | wc -l` ; \
if [ "$${HAVE_KCONFIG}" = 0 ] ; then \
sed -i '/rsource "flashdb\/Kconfig"/irsource "libcoap\/Kconfig"' RIOT/pkg/Kconfig ; \
fi
examples:
rm -rf RIOT/examples/libcoap-client && mkdir RIOT/examples/libcoap-client
cd examples_libcoap_client && cp -r * ../RIOT/examples/libcoap-client
rm -rf RIOT/examples/libcoap-server && mkdir RIOT/examples/libcoap-server
cd examples_libcoap_server && cp -r * ../RIOT/examples/libcoap-server
rm -rf RIOT/tests/pkg/libcoap && mkdir -p RIOT/tests/pkg/libcoap
cd tests_pkg_libcoap && cp -r * ../RIOT/tests/pkg/libcoap
client: RIOT pkg examples
$(MAKE) -C RIOT/examples/libcoap-client/ RIOT_CI_BUILD=1
server: RIOT pkg examples
$(MAKE) -C RIOT/examples/libcoap-server/ RIOT_CI_BUILD=1
tests: RIOT pkg examples
$(MAKE) -C RIOT/tests/pkg/libcoap/ RIOT_CI_BUILD=1
run_tests:
$(MAKE) -C RIOT/tests/pkg/libcoap/ test
clean:
rm -rf RIOT/pkg/libcoap
rm -rf RIOT/examples/libcoap-client
rm -rf RIOT/examples/libcoap-server
rm -rf RIOT/tests/pkg/libcoap
|