From 1d6099a5187caab2ae23d0126c887ac34c5a60b7 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 8 Jan 2008 13:41:00 +0000 Subject: Reduce make output git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@526 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/nettest/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nuttx/examples/nettest/Makefile') diff --git a/nuttx/examples/nettest/Makefile b/nuttx/examples/nettest/Makefile index 8d2041a4c..f71d2ce13 100644 --- a/nuttx/examples/nettest/Makefile +++ b/nuttx/examples/nettest/Makefile @@ -78,7 +78,7 @@ $(TARG_COBJS): %$(OBJEXT): %.c $(CC) -c $(CFLAGS) $< -o $@ $(TARG_BIN): $(TARG_OBJS) $(HOST_BIN) - ( for obj in $(TARG_OBJS) ; do \ + @( for obj in $(TARG_OBJS) ; do \ $(AR) $@ $${obj} || \ { echo "$(AR) $@ $obj FAILED!" ; exit 1 ; } ; \ done ; ) @@ -90,8 +90,8 @@ $(HOST_BIN): $(HOST_OBJS) $(HOSTCC) $(HOSTLDFLAGS) $(HOST_OBJS) -o $@ .depend: Makefile $(TARG_SRCS) - $(MKDEP) $(CC) -- $(CFLAGS) -- $(TARG_SRCS) >Make.dep - touch $@ + @$(MKDEP) $(CC) -- $(CFLAGS) -- $(TARG_SRCS) >Make.dep + @touch $@ depend: .depend -- cgit v1.2.3