mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
313 B
Makefile
14 lines
313 B
Makefile
MODULE := littlefs2
|
|
|
|
CFLAGS += -Wno-format
|
|
# GCC 4.9 bug (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64480)
|
|
# used by MIPS
|
|
CFLAGS += -Wno-missing-field-initializers
|
|
|
|
# Disable debug printing
|
|
ifneq ($(DEVELHELP),1)
|
|
CFLAGS += -DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|