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

25 lines
375 B
Makefile
Raw Normal View History

2013-03-06 01:08:15 +01:00
MODULE = cpu
2014-10-18 10:47:26 +02:00
DIRS += periph
2016-08-30 10:27:14 +02:00
DIRS += vfs
ifneq (,$(filter netdev_tap,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += netdev_tap
endif
ifneq (,$(filter socket_zep,$(USEMODULE)))
DIRS += socket_zep
endif
ifneq (,$(filter mtd_native,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += mtd
endif
2013-03-06 01:08:15 +01:00
ifneq (,$(filter can_linux,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += can
endif
2013-03-12 16:03:37 +01:00
include $(RIOTBASE)/Makefile.base
2013-03-06 01:08:15 +01:00
INCLUDES = $(NATIVEINCLUDES)