summaryrefslogtreecommitdiff
path: root/nuttx/net/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 13:41:00 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 13:41:00 +0000
commit1d6099a5187caab2ae23d0126c887ac34c5a60b7 (patch)
tree17fe86f40193e66075a26448d7bac95299f495e9 /nuttx/net/Makefile
parentbb2884d0309904ee1e8a908a27884c83bb12ce5a (diff)
downloadnuttx-1d6099a5187caab2ae23d0126c887ac34c5a60b7.tar.gz
nuttx-1d6099a5187caab2ae23d0126c887ac34c5a60b7.tar.bz2
nuttx-1d6099a5187caab2ae23d0126c887ac34c5a60b7.zip
Reduce make output
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@526 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/Makefile')
-rw-r--r--nuttx/net/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 79621aeb6..2ffb0826f 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -82,16 +82,16 @@ $(COBJS): %$(OBJEXT): %.c
$(CC) -c $(CFLAGS) $< -o $@
$(BIN): $(OBJS)
- ( for obj in $(OBJS) ; do \
+ @( for obj in $(OBJS) ; do \
$(AR) $@ $${obj} || \
{ echo "$(AR) $@ $obj FAILED!" ; exit 1 ; } ; \
done ; )
.depend: Makefile $(SRCS)
ifeq ($(CONFIG_NET),y)
- $(MKDEP) --dep-path . --dep-path uip $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @$(MKDEP) --dep-path . --dep-path uip $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
endif
- touch $@
+ @touch $@
depend: .depend