1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

native: relocate drivers/rtc implementation

This commit is contained in:
Ludwig Ortmann 2014-10-18 11:00:09 +02:00
parent 0136f208c6
commit 45cf2e4967
4 changed files with 4 additions and 3 deletions

View File

@ -2,9 +2,6 @@ MODULE = cpu
DIRS += periph
DIRS += drivers
ifneq (,$(filter rtc,$(USEMODULE)))
DIRS += rtc
endif
ifneq (,$(filter nativenet,$(USEMODULE)))
DIRS += net
endif

View File

@ -1 +1,5 @@
ifneq (,$(filter rtc,$(USEMODULE)))
DIRS += rtc
endif
include $(RIOTBASE)/Makefile.base