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

29 lines
642 B
Makefile
Raw Normal View History

ifneq (,$(filter netdev_default,$(USEMODULE)))
ifeq (,$(filter socket_zep,$(USEMODULE)))
USEMODULE += netdev_tap
endif
endif
ifneq (,$(filter mtd,$(USEMODULE)))
2017-09-06 16:09:38 +02:00
USEMODULE += mtd_native
endif
ifneq (,$(filter periph_can,$(FEATURES_USED)))
2022-01-18 16:56:44 +01:00
USEPKG += libsocketcan
endif
2023-03-03 15:38:56 +01:00
# default to host fs pass-through if no other fs was selected
ifneq (,$(filter vfs_default,$(USEMODULE)))
2023-03-03 15:38:56 +01:00
ifeq (,$(filter lwext%_vfs spiffs littlefs% fatfs_vfs,$(USEMODULE)))
USEMODULE += fs_native
endif
USEMODULE += mtd
endif
2022-02-28 09:23:48 +01:00
ifneq (,$(filter lvgl,$(USEPKG)))
USEPKG += lv_drivers
USEMODULE += lv_drivers_sdl
endif
USEMODULE += native_drivers