mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
328 B
Makefile
15 lines
328 B
Makefile
INCLUDES += -I$(CURDIR)
|
|
|
|
CFLAGS += -DSLIPDEV_PARAM_BAUDRATE=$(SLIP_BAUDRATE)
|
|
|
|
STATIC_ROUTES ?= 1
|
|
|
|
ifeq (1,$(USE_DHCPV6))
|
|
FLAGS_EXTRAS=-d
|
|
endif
|
|
|
|
# Configure terminal parameters
|
|
TERMDEPS += host-tools
|
|
TERMPROG ?= sudo sh $(RIOTTOOLS)/sliptty/start_network.sh
|
|
TERMFLAGS ?= $(FLAGS_EXTRAS) $(IPV6_PREFIX) $(PORT) $(SLIP_BAUDRATE)
|