Client implementation of the 9P protocol for constrained devices
git clone https://git.8pit.net/ninenano.git
1# Name of your application 2APPLICATION = ninenano 3 4# Run tests of native only 5BOARD = native 6 7# Change this to 0 show compiler invocation lines 8QUIET ?= 1 910# Path to the RIOT submodule11RIOTBASE ?= $(CURDIR)/../../../vendor/RIOT1213# CFLAGS for debugging purposes14CFLAGS += -DDEVELHELP -ggdb1516# Modules required for using sock_tcp17USEMODULE += ipv6_addr18USEMODULE += lwip_ipv6_autoconfig19USEMODULE += inet_csum20USEMODULE += lwip_ethernet lwip_netdev21USEMODULE += lwip_sock_tcp22USEMODULE += netdev_default2324# Module required for unit test functions25USEMODULE += embunit2627# Module required for using 9pfs28USEMODULE += vfs29USEMODULE += ninenano_9pfs3031export NINEBASE := $(CURDIR)/../../..32include $(NINEBASE)/Makefile.riot