Client implementation of the 9P protocol for constrained devices
git clone https://git.8pit.net/ninenano.git
1# Name of your application 2APPLICATION = 9pfs-shell 3 4# Address and port of protocol server 5NINEPFS_HOST ?= ::1 6NINEPFS_PORT ?= 5640 7 8# Define macros for address and port 9CFLAGS += -DNINEPFS_HOST="\"$(NINEPFS_HOST)\""10CFLAGS += -DNINEPFS_PORT=$(NINEPFS_PORT)1112# Board for which the application should be compiled13BOARD ?= native1415# Disable optional assert(3) checks16CFLAGS += -DNDEBUG1718# Change this to 0 show compiler invocation lines19QUIET ?= 12021# Path to the RIOT submodule22RIOTBASE ?= $(CURDIR)/../../vendor/RIOT2324# Modules required for using the vfs shell commands25USEMODULE += vfs26USEMODULE += shell27USEMODULE += shell_commands2829# Modules required for using gnrc_tcp30USEMODULE += gnrc_netdev_default31USEMODULE += auto_init_gnrc_netif32USEMODULE += gnrc_ipv6_default33USEMODULE += gnrc_tcp3435# Modules required for using 9pfs36USEMODULE += ninenano_9pfs3738# Optional modules for debugging purposes39USEMODULE += gnrc_icmpv6_echo4041export NINEBASE := $(CURDIR)/../..42include $(NINEBASE)/Makefile.riot