Skip to content
Snippets Groups Projects
Commit cf49dec3 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

make: fix the order of Makefile.dep for timex

The order of modules in Makefile.dep matters.
parent db727d1d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment