mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
4e4f908379
Currently this works only in qemu.
48 lines
957 B
Makefile
48 lines
957 B
Makefile
MODULE = shell_commands
|
|
|
|
SRC = shell_commands.c sc_sys.c
|
|
|
|
ifneq (,$(filter config,$(USEMODULE)))
|
|
SRC += sc_id.c
|
|
endif
|
|
ifneq (,$(filter transceiver,$(USEMODULE)))
|
|
SRC += sc_transceiver.c
|
|
endif
|
|
ifneq (,$(filter cc110x,$(USEMODULE)))
|
|
ifeq (,$(filter transceiver,$(USEMODULE)))
|
|
SRC += sc_cc1100.c
|
|
endif
|
|
endif
|
|
ifneq (,$(filter net_if,$(USEMODULE)))
|
|
SRC += sc_net_if.c
|
|
endif
|
|
ifneq (,$(filter mci,$(USEMODULE)))
|
|
SRC += sc_disk.c
|
|
endif
|
|
ifneq (,$(filter ltc4150,$(USEMODULE)))
|
|
SRC += sc_ltc4150.c
|
|
endif
|
|
ifneq (,$(filter ps,$(USEMODULE)))
|
|
SRC += sc_ps.c
|
|
endif
|
|
ifneq (,$(filter rpl,$(USEMODULE)))
|
|
SRC += sc_rpl.c
|
|
endif
|
|
ifneq (,$(filter rtc,$(USEMODULE)))
|
|
SRC += sc_rtc.c
|
|
endif
|
|
ifneq (,$(filter sht11,$(USEMODULE)))
|
|
SRC += sc_sht11.c
|
|
endif
|
|
ifneq (,$(filter lpc_common,$(USEMODULE)))
|
|
SRC += sc_heap.c
|
|
endif
|
|
ifneq (,$(filter random,$(USEMODULE)))
|
|
SRC += sc_mersenne.c
|
|
endif
|
|
ifeq ($(CPU),x86)
|
|
SRC += sc_x86_lspci.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|