1# Name of your application2APPLICATION = 9pfs-shell34# Address and port of protocol server5NINEPFS_HOST ?= ::16NINEPFS_PORT ?= 564078# Define macros for address and port9CFLAGS += -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