Lines Matching defs:RIOT
10 RIOT=RIOT
13 all: RIOT pkg examples client server
15 RIOT:
16 git clone --depth 1 https://github.com/RIOT-OS/RIOT.git $@
29 rm -rf RIOT/pkg/libcoap && mkdir RIOT/pkg/libcoap
30 cd pkg_libcoap && cp -r * ../RIOT/pkg/libcoap
31 @HAVE_KCONFIG=`grep libcoap/Kconfig RIOT/pkg/Kconfig | wc -l` ; \
33 sed -i '/rsource "libcose\/Kconfig"/irsource "libcoap\/Kconfig"' RIOT/pkg/Kconfig ; \
37 rm -rf RIOT/examples/libcoap-client && mkdir RIOT/examples/libcoap-client
38 cd examples_libcoap_client && cp -r * ../RIOT/examples/libcoap-client
39 rm -rf RIOT/examples/libcoap-server && mkdir RIOT/examples/libcoap-server
40 cd examples_libcoap_server && cp -r * ../RIOT/examples/libcoap-server
42 client: RIOT pkg examples
43 $(MAKE) -C RIOT/examples/libcoap-client/ RIOT_CI_BUILD=1
45 server: RIOT pkg examples
46 $(MAKE) -C RIOT/examples/libcoap-server/ RIOT_CI_BUILD=1
49 rm -rf RIOT/pkg/libcoap
50 rm -rf RIOT/examples/libcoap-client
51 rm -rf RIOT/examples/libcoap-server