diff options
| author | Nicolas Kaiser <nikai@nikai.net> | 2010-06-26 20:00:25 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-06-29 18:32:43 -0400 |
| commit | d1e316891693f3e7266a1df9afda72763248ef7c (patch) | |
| tree | 5669b68f6384153b986f85795f742ac190e53ebd /net/Makefile | |
| parent | 346fe763d7706cccdf90ba24f04f0facdd79b91a (diff) | |
net/Makefile: conditionally descend to wireless and ieee802154
Don't descend to wireless and ieee802154 unless they are actually used.
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/Makefile')
| -rw-r--r-- | net/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/Makefile b/net/Makefile index cb7bdc1210cb..41d420070a38 100644 --- a/net/Makefile +++ b/net/Makefile | |||
| @@ -50,7 +50,7 @@ endif | |||
| 50 | obj-$(CONFIG_IP_DCCP) += dccp/ | 50 | obj-$(CONFIG_IP_DCCP) += dccp/ |
| 51 | obj-$(CONFIG_IP_SCTP) += sctp/ | 51 | obj-$(CONFIG_IP_SCTP) += sctp/ |
| 52 | obj-$(CONFIG_RDS) += rds/ | 52 | obj-$(CONFIG_RDS) += rds/ |
| 53 | obj-y += wireless/ | 53 | obj-$(CONFIG_WIRELESS) += wireless/ |
| 54 | obj-$(CONFIG_MAC80211) += mac80211/ | 54 | obj-$(CONFIG_MAC80211) += mac80211/ |
| 55 | obj-$(CONFIG_TIPC) += tipc/ | 55 | obj-$(CONFIG_TIPC) += tipc/ |
| 56 | obj-$(CONFIG_NETLABEL) += netlabel/ | 56 | obj-$(CONFIG_NETLABEL) += netlabel/ |
| @@ -61,7 +61,7 @@ obj-$(CONFIG_CAIF) += caif/ | |||
| 61 | ifneq ($(CONFIG_DCB),) | 61 | ifneq ($(CONFIG_DCB),) |
| 62 | obj-y += dcb/ | 62 | obj-y += dcb/ |
| 63 | endif | 63 | endif |
| 64 | obj-y += ieee802154/ | 64 | obj-$(CONFIG_IEEE802154) += ieee802154/ |
| 65 | 65 | ||
| 66 | ifeq ($(CONFIG_NET),y) | 66 | ifeq ($(CONFIG_NET),y) |
| 67 | obj-$(CONFIG_SYSCTL) += sysctl_net.o | 67 | obj-$(CONFIG_SYSCTL) += sysctl_net.o |
