summaryrefslogtreecommitdiff
path: root/nuttx/fs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/Makefile')
-rw-r--r--nuttx/fs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index 14eb5cf3b..dfa0a4b90 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -78,14 +78,14 @@ $(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)
- $(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- touch $@
+ @$(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @touch $@
depend: .depend