]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - net/Makefile
Add DNS support
[karo-tx-uboot.git] / net / Makefile
index d3418742502e463c6ee96e8d342a3d127328b00b..835a04af4552f5813efddca4aa24c6455c856458 100644 (file)
@@ -27,13 +27,14 @@ include $(TOPDIR)/config.mk
 
 LIB    = $(obj)libnet.a
 
-COBJS-y += net.o
-COBJS-y += tftp.o
 COBJS-y += bootp.o
-COBJS-y += rarp.o
+COBJS-$(CONFIG_CMD_DNS)  += dns.o
 COBJS-y += eth.o
+COBJS-y += net.o
 COBJS-y += nfs.o
+COBJS-y += rarp.o
 COBJS-$(CONFIG_CMD_SNTP) += sntp.o
+COBJS-y += tftp.o
 
 COBJS  := $(COBJS-y)
 SRCS   := $(COBJS:.o=.c)