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

27 lines
500 B
Makefile
Raw Normal View History

include ../Makefile.tests_common
2016-08-12 22:14:16 +02:00
AUX_LOCAL ?= 1
AUX_TIMESTAMP ?= 1
ifeq (1, $(AUX_LOCAL))
USEMODULE += sock_aux_local
endif
ifeq (1, $(AUX_TIMESTAMP))
USEMODULE += sock_aux_timestamp
endif
2016-08-12 22:14:16 +02:00
USEMODULE += gnrc_sock_check_reuse
USEMODULE += sock_udp
2016-08-12 22:14:16 +02:00
USEMODULE += gnrc_ipv6
USEMODULE += ps
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=400
endif