You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
955 B
Makefile
43 lines
955 B
Makefile
ifneq (,$(findstring vtimer,$(USEMODULE)))
|
|
ifeq (,$(findstring hwtimer,$(USEMODULE)))
|
|
USEMODULE += hwtimer
|
|
endif
|
|
ifeq (,$(findstring timex,$(USEMODULE)))
|
|
USEMODULE += timex
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring uart0,$(USEMODULE)))
|
|
ifeq (,$(findstring lib,$(USEMODULE)))
|
|
USEMODULE += lib
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring cc110x,$(USEMODULE)))
|
|
ifeq (,$(findstring protocol_multiplex,$(USEMODULE)))
|
|
USEMODULE += protocol_multiplex
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring cc110x_ng,$(USEMODULE)))
|
|
ifeq (,$(findstring transceiver,$(USEMODULE)))
|
|
USEMODULE += transceiver
|
|
endif
|
|
ifeq (,$(findstring hwtimer,$(USEMODULE)))
|
|
USEMODULE += hwtimer
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring cc2420,$(USEMODULE)))
|
|
ifeq (,$(findstring transceiver,$(USEMODULE)))
|
|
USEMODULE += transceiver
|
|
USEMODULE += ieee802154
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring sixlowpan,$(USEMODULE)))
|
|
ifeq (,$(findstring ieee802154,$(USEMODULE)))
|
|
USEMODULE += ieee802154
|
|
endif
|
|
endif
|