1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/gnrc_sock_ip/Makefile

33 lines
557 B
Makefile
Raw Normal View History

include ../Makefile.tests_common
2016-08-25 17:53:57 +02:00
AUX_LOCAL ?= 1
AUX_TIMESTAMP ?= 1
AUX_RSSI ?= 1
ifeq (1, $(AUX_LOCAL))
USEMODULE += sock_aux_local
endif
ifeq (1, $(AUX_TIMESTAMP))
USEMODULE += sock_aux_timestamp
endif
ifeq (1, $(AUX_RSSI))
USEMODULE += sock_aux_rssi
endif
USEMODULE += sock_ip
2016-08-25 17:53:57 +02:00
USEMODULE += gnrc_ipv6
USEMODULE += ps
2021-12-13 19:45:28 +01:00
USEMODULE += xtimer
CFLAGS += -DTEST_SUITES
include $(RIOTBASE)/Makefile.include
# Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig.
ifndef CONFIG_GNRC_PKTBUF_SIZE
CFLAGS += -DCONFIG_GNRC_PKTBUF_SIZE=200
endif