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:
parent
f67c346842
commit
e0d539f2f4
@ -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.
|
||||
|
@ -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 $@
|
||||
|
@ -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 $@
|
||||
|
@ -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 $@
|
||||
|
@ -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 $@
|
||||
|
Loading…
Reference in New Issue
Block a user