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

make: fix the order of Makefile.dep for timex

The order of modules in Makefile.dep matters.
This commit is contained in:
Oleg Hahm 2014-10-01 22:29:59 +02:00
parent db727d1d85
commit cf49dec303

View File

@ -47,17 +47,17 @@ ifneq (,$(filter sixlowpan,$(USEMODULE)))
USEMODULE += vtimer
endif
ifneq (,$(filter uart0,$(USEMODULE)))
USEMODULE += lib
USEMODULE += posix
endif
ifneq (,$(filter posix,$(USEMODULE)))
USEMODULE += uart0
USEMODULE += timex
USEMODULE += vtimer
endif
ifneq (,$(filter uart0,$(USEMODULE)))
USEMODULE += lib
USEMODULE += posix
endif
ifneq (,$(filter cbor,$(USEMODULE)))
USEMODULE += net_help
endif