mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
144 lines
3.1 KiB
Makefile
144 lines
3.1 KiB
Makefile
MODULE = shell_commands
|
|
|
|
SRC = sc_sys.c
|
|
|
|
ifneq (,$(filter app_metadata,$(USEMODULE)))
|
|
SRC += sc_app_metadata.c
|
|
endif
|
|
ifneq (,$(filter benchmark_udp,$(USEMODULE)))
|
|
SRC += sc_benchmark_udp.c
|
|
endif
|
|
ifneq (,$(filter dfplayer,$(USEMODULE)))
|
|
SRC += sc_dfplayer.c
|
|
endif
|
|
ifneq (,$(filter mci,$(USEMODULE)))
|
|
SRC += sc_disk.c
|
|
endif
|
|
ifneq (,$(filter nice,$(USEMODULE)))
|
|
SRC += sc_nice.c
|
|
endif
|
|
ifneq (,$(filter periph_pm,$(USEMODULE)))
|
|
SRC += sc_pm.c
|
|
endif
|
|
ifneq (,$(filter ps,$(USEMODULE)))
|
|
SRC += sc_ps.c
|
|
endif
|
|
ifneq (,$(filter heap_cmd,$(USEMODULE)))
|
|
SRC += sc_heap.c
|
|
endif
|
|
ifneq (,$(filter sht1x,$(USEMODULE)))
|
|
SRC += sc_sht1x.c
|
|
endif
|
|
ifneq (,$(filter lpc2387,$(USEMODULE)))
|
|
SRC += sc_heap.c
|
|
endif
|
|
ifneq (,$(filter random_cmd,$(USEMODULE)))
|
|
SRC += sc_random.c
|
|
endif
|
|
ifneq (,$(filter at30tse75x,$(USEMODULE)))
|
|
SRC += sc_at30tse75x.c
|
|
endif
|
|
ifneq (,$(filter gnrc_netif,$(USEMODULE)))
|
|
SRC += sc_gnrc_netif.c
|
|
endif
|
|
ifneq (,$(filter gnrc_udp_cmd,$(USEMODULE)))
|
|
SRC += sc_gnrc_udp.c
|
|
endif
|
|
ifneq (,$(filter netstats_neighbor,$(USEMODULE)))
|
|
SRC += sc_netstats_nb.c
|
|
endif
|
|
ifneq (,$(filter fib,$(USEMODULE)))
|
|
SRC += sc_fib.c
|
|
endif
|
|
ifneq (,$(filter gnrc_ipv6_ext_frag_stats,$(USEMODULE)))
|
|
SRC += sc_gnrc_ipv6_frag_stats.c
|
|
endif
|
|
ifneq (,$(filter gnrc_ipv6_nib,$(USEMODULE)))
|
|
SRC += sc_gnrc_ipv6_nib.c
|
|
endif
|
|
ifneq (,$(filter gnrc_ipv6_whitelist,$(USEMODULE)))
|
|
SRC += sc_whitelist.c
|
|
endif
|
|
ifneq (,$(filter gnrc_ipv6_blacklist,$(USEMODULE)))
|
|
SRC += sc_blacklist.c
|
|
endif
|
|
ifneq (,$(filter gnrc_icmpv6_echo,$(USEMODULE)))
|
|
SRC += sc_gnrc_icmpv6_echo.c
|
|
endif
|
|
ifneq (,$(filter gnrc_pktbuf_cmd,$(USEMODULE)))
|
|
SRC += sc_gnrc_pktbuf.c
|
|
endif
|
|
ifneq (,$(filter gnrc_rpl,$(USEMODULE)))
|
|
SRC += sc_gnrc_rpl.c
|
|
endif
|
|
ifneq (,$(filter gnrc_sixlowpan_ctx,$(USEMODULE)))
|
|
SRC += sc_gnrc_6ctx.c
|
|
endif
|
|
ifneq (,$(filter gnrc_sixlowpan_frag_stats,$(USEMODULE)))
|
|
SRC += sc_gnrc_6lo_frag_stats.c
|
|
endif
|
|
ifneq (,$(filter saul_reg,$(USEMODULE)))
|
|
SRC += sc_saul_reg.c
|
|
endif
|
|
ifneq (,$(filter ccn-lite-utils,$(USEMODULE)))
|
|
SRC += sc_ccnl.c
|
|
endif
|
|
ifneq (,$(filter sntp,$(USEMODULE)))
|
|
SRC += sc_sntp.c
|
|
endif
|
|
ifneq (,$(filter vfs,$(USEMODULE)))
|
|
SRC += sc_vfs.c
|
|
endif
|
|
ifneq (,$(filter conn_can,$(USEMODULE)))
|
|
SRC += sc_can.c
|
|
endif
|
|
ifneq (,$(filter cord_ep,$(USEMODULE)))
|
|
SRC += sc_cord_ep.c
|
|
endif
|
|
|
|
ifneq (,$(filter openwsn,$(USEPKG)))
|
|
SRC += sc_openwsn.c
|
|
endif
|
|
|
|
ifneq (,$(filter lwip_netif,$(USEMODULE)))
|
|
SRC += sc_lwip_netif.c
|
|
endif
|
|
|
|
ifneq (,$(filter rtt_rtc periph_rtc,$(USEMODULE)))
|
|
SRC += sc_rtc.c
|
|
endif
|
|
|
|
ifneq (,$(filter rtt_cmd,$(USEMODULE)))
|
|
SRC += sc_rtt.c
|
|
endif
|
|
|
|
ifneq (,$(filter i2c_scan,$(USEMODULE)))
|
|
SRC += sc_i2c_scan.c
|
|
endif
|
|
|
|
ifneq (,$(filter semtech-loramac,$(USEPKG)))
|
|
SRC += sc_loramac.c
|
|
endif
|
|
|
|
ifneq (,$(filter nanocoap_vfs,$(USEMODULE)))
|
|
SRC += sc_nanocoap_vfs.c
|
|
endif
|
|
|
|
ifneq (,$(filter nimble_netif,$(USEMODULE)))
|
|
SRC += sc_nimble_netif.c
|
|
endif
|
|
|
|
ifneq (,$(filter nimble_statconn,$(USEMODULE)))
|
|
SRC += sc_nimble_statconn.c
|
|
endif
|
|
|
|
ifneq (,$(filter suit_transport_worker,$(USEMODULE)))
|
|
SRC += sc_suit.c
|
|
endif
|
|
|
|
ifneq (,$(filter cryptoauthlib,$(USEPKG)))
|
|
SRC += sc_cryptoauthlib.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|