nes-proj/examples/slip-radio/Makefile

19 lines
520 B
Makefile
Raw Normal View History

CONTIKI_PROJECT=slip-radio
all: $(CONTIKI_PROJECT)
2017-09-01 14:07:13 +00:00
MODULES += os/services/slip-cmd
CONTIKI=../..
2017-10-29 01:22:28 +00:00
-include $(CONTIKI)/Makefile.identify-target
### Optionally, the target can add its own Makefile, to do things like e.g.
### add more source files to the build or define make variables.
-include $(TARGET)/Makefile.$(TARGET)
PROJECTDIRS += $(TARGET)
PROJECT_SOURCEFILES += slip-net.c
2017-09-08 19:10:37 +00:00
# custom net layer, but with IPv6 enabled
MAKE_NET = MAKE_NET_IPV6
MAKE_ROUTING = MAKE_ROUTING_NONE
include $(CONTIKI)/Makefile.include