mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
49bd85d00a
Skald is a very small and simple, TX-only BLE stack that supports sending advertisements only. It is useful for building all kinds of BLE beacons with very minimal memory footprints.
134 lines
3.3 KiB
Makefile
134 lines
3.3 KiB
Makefile
ifneq (,$(filter csma_sender,$(USEMODULE)))
|
|
DIRS += net/link_layer/csma_sender
|
|
endif
|
|
ifneq (,$(filter posix_semaphore,$(USEMODULE)))
|
|
DIRS += posix/semaphore
|
|
endif
|
|
ifneq (,$(filter posix_sockets,$(USEMODULE)))
|
|
DIRS += posix/sockets
|
|
endif
|
|
ifneq (,$(filter posix_time,$(USEMODULE)))
|
|
DIRS += posix/time
|
|
endif
|
|
ifneq (,$(filter pthread,$(USEMODULE)))
|
|
DIRS += posix/pthread
|
|
endif
|
|
ifneq (,$(filter shell_commands,$(USEMODULE)))
|
|
DIRS += shell/commands
|
|
endif
|
|
ifneq (,$(filter net_help,$(USEMODULE)))
|
|
DIRS += net/crosslayer/net_help
|
|
endif
|
|
ifneq (,$(filter routing,$(USEMODULE)))
|
|
DIRS += net/routing
|
|
endif
|
|
ifneq (,$(filter oneway_malloc,$(USEMODULE)))
|
|
DIRS += oneway-malloc
|
|
endif
|
|
ifneq (,$(filter ieee802154,$(USEMODULE)))
|
|
DIRS += net/link_layer/ieee802154
|
|
endif
|
|
ifneq (,$(filter netdev_test,$(USEMODULE)))
|
|
DIRS += net/netdev_test
|
|
endif
|
|
ifneq (,$(filter icmpv6,$(USEMODULE)))
|
|
DIRS += net/network_layer/icmpv6
|
|
endif
|
|
ifneq (,$(filter ipv4_addr,$(USEMODULE)))
|
|
DIRS += net/network_layer/ipv4/addr
|
|
endif
|
|
ifneq (,$(filter ipv6_addr,$(USEMODULE)))
|
|
DIRS += net/network_layer/ipv6/addr
|
|
endif
|
|
ifneq (,$(filter ipv6_ext_rh,$(USEMODULE)))
|
|
DIRS += net/network_layer/ipv6/ext/rh
|
|
endif
|
|
ifneq (,$(filter ipv6_ext,$(USEMODULE)))
|
|
DIRS += net/network_layer/ipv6/ext
|
|
endif
|
|
ifneq (,$(filter ipv6_hdr,$(USEMODULE)))
|
|
DIRS += net/network_layer/ipv6/hdr
|
|
endif
|
|
ifneq (,$(filter gnrc gnrc_%,$(USEMODULE)))
|
|
DIRS += net/gnrc
|
|
endif
|
|
ifneq (,$(filter inet_csum,$(USEMODULE)))
|
|
DIRS += net/crosslayer/inet_csum
|
|
endif
|
|
ifneq (,$(filter cipher_modes,$(USEMODULE)))
|
|
DIRS += crypto/modes
|
|
endif
|
|
ifneq (,$(filter nhdp,$(USEMODULE)))
|
|
DIRS += net/routing/nhdp
|
|
endif
|
|
ifneq (,$(filter fib,$(USEMODULE)))
|
|
DIRS += net/network_layer/fib
|
|
endif
|
|
ifneq (,$(filter sixlowpan,$(USEMODULE)))
|
|
DIRS += net/network_layer/sixlowpan
|
|
endif
|
|
ifneq (,$(filter log_%,$(USEMODULE)))
|
|
DIRS += log
|
|
endif
|
|
ifneq (,$(filter xtimer,$(USEMODULE)))
|
|
DIRS += xtimer
|
|
endif
|
|
ifneq (,$(filter cpp11-compat,$(USEMODULE)))
|
|
DIRS += cpp11-compat
|
|
endif
|
|
ifneq (,$(filter udp,$(USEMODULE)))
|
|
DIRS += net/transport_layer/udp
|
|
endif
|
|
ifneq (,$(filter tcp,$(USEMODULE)))
|
|
DIRS += net/transport_layer/tcp
|
|
endif
|
|
ifneq (,$(filter hamming256,$(USEMODULE)))
|
|
DIRS += ecc/hamming256
|
|
endif
|
|
ifneq (,$(filter uhcpc,$(USEMODULE)))
|
|
DIRS += net/application_layer/uhcp
|
|
endif
|
|
ifneq (,$(filter gnrc_uhcpc,$(USEMODULE)))
|
|
DIRS += net/gnrc/application_layer/uhcpc
|
|
endif
|
|
ifneq (,$(filter sntp,$(USEMODULE)))
|
|
DIRS += net/application_layer/sntp
|
|
endif
|
|
ifneq (,$(filter netopt,$(USEMODULE)))
|
|
DIRS += net/crosslayer/netopt
|
|
endif
|
|
ifneq (,$(filter sema,$(USEMODULE)))
|
|
DIRS += sema
|
|
endif
|
|
ifneq (,$(filter gcoap,$(USEMODULE)))
|
|
DIRS += net/application_layer/gcoap
|
|
endif
|
|
ifneq (,$(filter emcute,$(USEMODULE)))
|
|
DIRS += net/application_layer/emcute
|
|
endif
|
|
ifneq (,$(filter sock_util,$(USEMODULE)))
|
|
DIRS += net/sock
|
|
endif
|
|
ifneq (,$(filter sock_dns,$(USEMODULE)))
|
|
DIRS += net/application_layer/dns
|
|
endif
|
|
ifneq (,$(filter constfs,$(USEMODULE)))
|
|
DIRS += fs/constfs
|
|
endif
|
|
ifneq (,$(filter devfs,$(USEMODULE)))
|
|
DIRS += fs/devfs
|
|
endif
|
|
ifneq (,$(filter l2filter,$(USEMODULE)))
|
|
DIRS += net/link_layer/l2filter
|
|
endif
|
|
ifneq (,$(filter nanocoap,$(USEMODULE)))
|
|
DIRS += net/application_layer/nanocoap
|
|
endif
|
|
ifneq (,$(filter skald,$(USEMODULE)))
|
|
DIRS += net/skald
|
|
endif
|
|
|
|
DIRS += $(dir $(wildcard $(addsuffix /Makefile, $(USEMODULE))))
|
|
|
|
include $(RIOTBASE)/Makefile.base
|