mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
57cc002c67
Conflicts: core/include/queue.h core/queue.c cpu/msp430-common/hwtimer_cpu.c cpu/msp430x16x/hwtimer_msp430.c sys/lib/hashtable.c sys/net/ieee802154/ieee802154_frame.c sys/shell/commands/sc_cc110x_ng.c sys/transceiver/transceiver.c sys/vtimer/vtimer.c
37 lines
809 B
Makefile
37 lines
809 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_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
|