ninenano

Client implementation of the 9P protocol for constrained devices

git clone https://git.8pit.net/ninenano.git

 1RIOTBASE ?= "$(CURDIR)"/vendor/RIOT
 2
 3ifeq ($(TESTADDR),)
 4  $(error 'TESTADDR' environment variable isn't set)
 5endif
 6
 7test: all
 8	cd tests/ && ./run_tests.sh "$(TESTADDR)"
 9
10all:
11	"$(MAKE)" -C tests/unit/client
12	"$(MAKE)" -C tests/unit/server
13	"$(MAKE)" -C tests/integration/client
14	"$(MAKE)" -C tests/integration/server
15
16.PHONY: all test