a3c185132a
Previously, we were using the example's Makefile to configure whether we want a web server built into the BR. We had 3 options: * No web server * Internal web server * External web server (from apps/) The last option is no longer evailable. This commit removes support for this option and it also simplifies the situation: We now merely use a CPP macro to enable/disable the web server.
16 lines
408 B
Makefile
16 lines
408 B
Makefile
CONTIKI_PROJECT=border-router
|
|
all: $(CONTIKI_PROJECT)
|
|
MODULES += os/services/slip-cmd
|
|
|
|
CONTIKI=../..
|
|
|
|
PROJECT_SOURCEFILES += border-router-cmds.c tun-bridge.c httpd-simple.c
|
|
PROJECT_SOURCEFILES += slip-config.c slip-dev.c border-router-mac.c
|
|
|
|
MAKE_MAC = MAKE_MAC_OTHER
|
|
MAKE_NET = MAKE_NET_IPV6
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
connect-router: border-router.native
|
|
sudo ./border-router.native fd00::1/64
|