Skip to content

Commit

Permalink
make: fix the order of Makefile.dep for timex
Browse files Browse the repository at this point in the history
The order of modules in Makefile.dep matters.
  • Loading branch information
OlegHahm committed Oct 7, 2014
1 parent db727d1 commit cf49dec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile.dep
Expand Up @@ -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
Expand Down

0 comments on commit cf49dec

Please sign in to comment.