summaryrefslogtreecommitdiff
path: root/nuttx/net/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-30 13:05:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-30 13:05:19 -0600
commit8a451ae8460919136103be464e363545ccc199fe (patch)
treea9944c0080accd76832d5f1002b32111d7f61ba3 /nuttx/net/Makefile
parent044712b51d49b4c51f2bc6e36e73adb12fbed889 (diff)
downloadnuttx-8a451ae8460919136103be464e363545ccc199fe.tar.gz
nuttx-8a451ae8460919136103be464e363545ccc199fe.tar.bz2
nuttx-8a451ae8460919136103be464e363545ccc199fe.zip
Move IGMP files from net/uip to net/igmp
Diffstat (limited to 'nuttx/net/Makefile')
-rw-r--r--nuttx/net/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 9e403b92b..f3fda059a 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -100,13 +100,14 @@ NETDEV_CSRCS += netdev_rxnotify.c
endif
include arp/Make.defs
+include igmp/Make.defs
include uip/Make.defs
endif
-ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(ARP_ASRCS) $(UIP_ASRCS)
+ASRCS = $(SOCK_ASRCS) $(NETDEV_ASRCS) $(NET_ASRCS)
AOBJS = $(ASRCS:.S=$(OBJEXT))
-CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(ARP_CSRCS) $(UIP_CSRCS)
+CSRCS = $(SOCK_CSRCS) $(NETDEV_CSRCS) $(NET_CSRCS)
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)