Fix a netutils build issue

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3587 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-05-11 00:27:29 +00:00
parent f67c346842
commit e0d539f2f4
5 changed files with 7 additions and 4 deletions

View File

@ -37,3 +37,6 @@
on module now installs and builds under this directory.
* apps/interpreter/ficl: Added logic to build Ficl (the "Forth Inspired
Command Language"). See http://ficl.sourceforge.net/.
* apps/netutils/dhcpc, dhcpcd, and tftp. If these directories are included
in the configuration but CONFIG_NET_UDP is disable (which is not very wise),
then a make error occurs because tools/mkdep.sh is called with no files.

View File

@ -82,7 +82,7 @@ $(COBJS): %$(OBJEXT): %.c
context:
.depend: Makefile $(SRCS)
ifneq ($(SRCS),)
ifeq ($(CONFIG_NET_UDP),y)
@$(MKDEP) $(ROOTDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
endif
@touch $@

View File

@ -82,7 +82,7 @@ $(COBJS): %$(OBJEXT): %.c
context:
.depend: Makefile $(SRCS)
ifneq ($(SRCS),)
ifeq ($(CONFIG_NET_UDP),y)
@$(MKDEP) $(ROOTDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
endif
@touch $@

View File

@ -82,7 +82,7 @@ $(COBJS): %$(OBJEXT): %.c
context:
.depend: Makefile $(SRCS)
ifneq ($(SRCS),)
ifeq ($(CONFIG_NET_UDP),y)
@$(MKDEP) $(ROOTDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
endif
@touch $@

View File

@ -84,7 +84,7 @@ $(COBJS): %$(OBJEXT): %.c
context:
.depend: Makefile $(SRCS)
ifneq ($(SRCS),)
ifeq ($(CONFIG_NET_UDP),y)
@$(MKDEP) $(ROOTDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
endif
@touch $@