summaryrefslogtreecommitdiff
path: root/nuttx/configs/sim/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/sim/src/Makefile')
-rw-r--r--nuttx/configs/sim/src/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/nuttx/configs/sim/src/Makefile b/nuttx/configs/sim/src/Makefile
index 9b924486d..adfbb1f9a 100644
--- a/nuttx/configs/sim/src/Makefile
+++ b/nuttx/configs/sim/src/Makefile
@@ -60,22 +60,23 @@ $(COBJS) $(LINKOBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
libboard$(LIBEXT): $(OBJS)
- @$(AR) $@ # Create an empty archive
+ $(Q) $(AR) $@ # Create an empty archive
ifneq ($(OBJS),)
$(call ARCHIVE, $@, $(OBJS))
endif
.depend: Makefile $(SRCS)
- @$(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- @touch $@
+ $(Q) $(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ $(Q) touch $@
depend: .depend
clean:
- @rm -f libboard$(LIBEXT) *~ .*.swp
+ $(call DELFILE libboard$(LIBEXT)))
$(call CLEAN)
distclean: clean
- @rm -f Make.dep .depend
+ $(call DELFILE Make.dep)
+ $(call DELFILE .depend)
-include Make.dep