mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
319 B
Makefile
15 lines
319 B
Makefile
INCLUDES += -I$(PKGDIRBASE)
|
|
INCLUDES += -I$(RIOTPKG)/fatfs/fatfs_diskio/mtd/include
|
|
DIRS += $(PKGDIRBASE)/fatfs
|
|
|
|
DIRS += $(RIOTBASE)/pkg/fatfs/fatfs_diskio/mtd
|
|
|
|
|
|
ifneq (,$(filter fatfs_vfs,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/fatfs/fatfs_vfs
|
|
endif
|
|
|
|
ifeq ($(shell uname -s),Darwin)
|
|
CFLAGS += -Wno-empty-body
|
|
endif
|