1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/vfs_default/Makefile
Marian Buschsieweke 12140ffb0e
examples,tests: Drop redundant dependency
When depending on one or more shell commands, the shell is pulled in
as dependency anyway.
2023-04-19 16:58:10 +02:00

15 lines
357 B
Makefile

include ../Makefile.tests_common
USEMODULE += vfs_default
USEMODULE += vfs_auto_format
USEMODULE += ps
USEMODULE += shell_cmds_default
include $(RIOTBASE)/Makefile.include
ifneq (,$(filter avr8_common,$(USEMODULE)))
# the main thread stack on AVR is too small for the vfs shell command
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE
endif