1# Name of your application2APPLICATION = ninenano34# Run tests of native only5BOARD = native67# Change this to 0 show compiler invocation lines8QUIET ?= 1910# 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# Modules required for using the 9p component28USEMODULE += ninenano_9p2930export NINEBASE := $(CURDIR)/../../..31include $(NINEBASE)/Makefile.riot