summaryrefslogtreecommitdiff
path: root/nuttx/drivers/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/drivers/Makefile')
-rw-r--r--nuttx/drivers/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/drivers/Makefile b/nuttx/drivers/Makefile
index 53e9cb12c..a57285505 100644
--- a/nuttx/drivers/Makefile
+++ b/nuttx/drivers/Makefile
@@ -105,16 +105,16 @@ $(BIN): $(OBJS)
$(call ARCHIVE, $@, "$(OBJS)")
.depend: Makefile $(SRCS)
- @$(MKDEP) $(DEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- @touch $@
+ $(Q) $(MKDEP) $(DEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ $(Q) touch $@
depend: .depend
clean:
- @rm -f $(BIN) *~ .*.swp
+ $(Q) rm -f $(BIN) *~ .*.swp
$(call CLEAN)
distclean: clean
- @rm -f Make.dep .depend
+ $(Q) rm -f Make.dep .depend
-include Make.dep