2014-02-14 00:30:34 +01:00
|
|
|
ifneq (,$(filter pnet,$(USEMODULE)))
|
2013-09-30 14:14:05 +02:00
|
|
|
DIRS += posix/pnet
|
|
|
|
endif
|
2014-02-13 14:18:30 +01:00
|
|
|
ifneq (,$(filter pthread,$(USEMODULE)))
|
|
|
|
DIRS += posix/pthread
|
|
|
|
endif
|
2014-02-14 00:30:34 +01:00
|
|
|
ifneq (,$(filter shell_commands,$(USEMODULE)))
|
2013-02-08 17:37:02 +01:00
|
|
|
DIRS += shell/commands
|
|
|
|
endif
|
2014-02-14 00:30:34 +01:00
|
|
|
ifneq (,$(filter net_help,$(USEMODULE)))
|
2013-12-15 16:09:01 +01:00
|
|
|
DIRS += net/crosslayer/net_help
|
2013-03-16 17:02:35 +01:00
|
|
|
endif
|
2014-03-25 16:22:54 +01:00
|
|
|
ifneq (,$(filter routing,$(USEMODULE)))
|
2015-03-03 19:34:12 +01:00
|
|
|
DIRS += net/routing
|
2014-03-25 16:22:54 +01:00
|
|
|
endif
|
2014-05-15 16:30:47 +02:00
|
|
|
ifneq (,$(filter oneway_malloc,$(USEMODULE)))
|
|
|
|
DIRS += oneway-malloc
|
|
|
|
endif
|
2015-08-09 23:53:40 +02:00
|
|
|
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
|
2015-08-10 02:41:08 +02:00
|
|
|
ifneq (,$(filter gnrc gnrc_%,$(USEMODULE)))
|
|
|
|
DIRS += net/gnrc
|
|
|
|
endif
|
2015-08-07 14:56:36 +02:00
|
|
|
ifneq (,$(filter inet_csum,$(USEMODULE)))
|
|
|
|
DIRS += net/crosslayer/inet_csum
|
2015-03-28 14:01:31 +01:00
|
|
|
endif
|
2015-04-02 08:56:18 +02:00
|
|
|
ifneq (,$(filter cipher_modes,$(USEMODULE)))
|
|
|
|
DIRS += crypto/modes
|
|
|
|
endif
|
2014-11-25 12:02:52 +01:00
|
|
|
ifneq (,$(filter nhdp,$(USEMODULE)))
|
|
|
|
DIRS += net/routing/nhdp
|
|
|
|
endif
|
2015-08-21 16:06:57 +02:00
|
|
|
ifneq (,$(filter gnrc_netdev2,$(USEMODULE)))
|
|
|
|
DIRS += net/gnrc/link_layer/netdev2
|
|
|
|
endif
|
2014-11-04 08:47:57 +01:00
|
|
|
ifneq (,$(filter fib,$(USEMODULE)))
|
|
|
|
DIRS += net/network_layer/fib
|
|
|
|
endif
|
2015-08-17 15:06:44 +02:00
|
|
|
ifneq (,$(filter sixlowpan,$(USEMODULE)))
|
|
|
|
DIRS += net/network_layer/sixlowpan
|
|
|
|
endif
|
2015-05-04 16:43:29 +02:00
|
|
|
ifneq (,$(filter hwtimer_compat,$(USEMODULE)))
|
|
|
|
DIRS += compat/hwtimer
|
|
|
|
endif
|
2015-02-25 16:31:03 +01:00
|
|
|
ifneq (,$(filter log_%,$(USEMODULE)))
|
|
|
|
DIRS += log
|
|
|
|
endif
|
2015-03-03 19:34:12 +01:00
|
|
|
ifneq (,$(filter cpp11-compat,$(USEMODULE)))
|
|
|
|
DIRS += cpp11-compat
|
|
|
|
endif
|
2015-08-10 03:16:53 +02:00
|
|
|
ifneq (,$(filter udp,$(USEMODULE)))
|
|
|
|
DIRS += net/transport_layer/udp
|
|
|
|
endif
|
2014-11-11 09:20:37 +01:00
|
|
|
|
2015-07-07 18:22:26 +02:00
|
|
|
ifneq (,$(filter netopt,$(USEMODULE)))
|
|
|
|
DIRS += net/crosslayer/netopt
|
|
|
|
endif
|
|
|
|
|
2014-11-11 09:20:37 +01:00
|
|
|
DIRS += $(dir $(wildcard $(addsuffix /Makefile, ${USEMODULE})))
|
2013-02-06 13:20:21 +01:00
|
|
|
|
2013-03-09 23:47:21 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|