Skip to content

Commit

Permalink
net/Makefile: conditionally descend to wireless and ieee802154
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Nicolas Kaiser authored and David S. Miller committed Jun 29, 2010
1 parent 346fe76 commit d1e3168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ endif
obj-$(CONFIG_IP_DCCP) += dccp/
obj-$(CONFIG_IP_SCTP) += sctp/
obj-$(CONFIG_RDS) += rds/
obj-y += wireless/
obj-$(CONFIG_WIRELESS) += wireless/
obj-$(CONFIG_MAC80211) += mac80211/
obj-$(CONFIG_TIPC) += tipc/
obj-$(CONFIG_NETLABEL) += netlabel/
Expand All @@ -61,7 +61,7 @@ obj-$(CONFIG_CAIF) += caif/
ifneq ($(CONFIG_DCB),)
obj-y += dcb/
endif
obj-y += ieee802154/
obj-$(CONFIG_IEEE802154) += ieee802154/

ifeq ($(CONFIG_NET),y)
obj-$(CONFIG_SYSCTL) += sysctl_net.o
Expand Down

0 comments on commit d1e3168

Please sign in to comment.