aboutsummaryrefslogtreecommitdiff
path: root/nuttx/fs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 18:36:28 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 18:36:28 +0000
commita42dcee79d5090c8df3a3a04cd1cf2b6d0347575 (patch)
treeb69e31da1b3edac0b4815d212b99ac312fb194e2 /nuttx/fs
parent2e97e079981e4f8070ede6528f82c173b893fb62 (diff)
downloadpx4-firmware-a42dcee79d5090c8df3a3a04cd1cf2b6d0347575.tar.gz
px4-firmware-a42dcee79d5090c8df3a3a04cd1cf2b6d0347575.tar.bz2
px4-firmware-a42dcee79d5090c8df3a3a04cd1cf2b6d0347575.zip
Completes removal bash ARCHIVE loop; Adds basic Makefile for native windows build
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5338 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs')
-rw-r--r--nuttx/fs/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index cb530cbec..643b322bb 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -123,20 +123,20 @@ $(BIN): $(OBJS)
$(call ARCHIVE, $@, "$(OBJS)")
.depend: Makefile $(SRCS)
- @$(MKDEP) --dep-path . $(MMAPDEPPATH) $(FATDEPPATH) $(ROMFSDEPPATH) $(NXFFSDEPPATH) $(NFSDEPPATH) \
+ $(Q) $(MKDEP) --dep-path . $(MMAPDEPPATH) $(FATDEPPATH) $(ROMFSDEPPATH) $(NXFFSDEPPATH) $(NFSDEPPATH) \
$(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- @touch $@
+ $(Q) touch $@
depend: .depend
clean:
- @rm -f $(BIN) *~ .*.swp
+ $(Q) rm -f $(BIN) *~ .*.swp
$(call CLEAN)
- @( for dir in $(SUBDIRS); do \
+ $(Q) ( for dir in $(SUBDIRS); do \
rm -f $${dir}/*~ $${dir}/.*.swp; \
done ; )
distclean: clean
- @rm -f Make.dep .depend
+ $(Q) rm -f Make.dep .depend
-include Make.dep