mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
19 lines
363 B
Makefile
19 lines
363 B
Makefile
include ../Makefile.sys_common
|
|
|
|
USEMODULE += congure_quic
|
|
USEMODULE += congure_test
|
|
USEMODULE += fmt
|
|
USEMODULE += shell
|
|
|
|
INCLUDES += -I$(CURDIR)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
ifndef CONFIG_SHELL_NO_ECHO
|
|
CFLAGS += -DCONFIG_SHELL_NO_ECHO=1
|
|
endif
|
|
|
|
ifndef CONFIG_CONGURE_TEST_LOST_MSG_POOL_SIZE
|
|
CFLAGS += -DCONFIG_CONGURE_TEST_LOST_MSG_POOL_SIZE=6
|
|
endif
|