summaryrefslogtreecommitdiff
path: root/nuttx/examples/mount/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-10 13:38:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-10 13:38:13 +0000
commitd04ce79590b7fc7427267b5d7af30385b732ee44 (patch)
tree5dac91e7eb2f45eed125a8e30428e361cc988f18 /nuttx/examples/mount/Makefile
parente7e5d179c9f7ab56ac378786de946f971f5a9f07 (diff)
downloadnuttx-d04ce79590b7fc7427267b5d7af30385b732ee44.tar.gz
nuttx-d04ce79590b7fc7427267b5d7af30385b732ee44.tar.bz2
nuttx-d04ce79590b7fc7427267b5d7af30385b732ee44.zip
Clean operations are now toolchain specific
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@542 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/mount/Makefile')
-rw-r--r--nuttx/examples/mount/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/examples/mount/Makefile b/nuttx/examples/mount/Makefile
index bee957d07..71e75ed9b 100644
--- a/nuttx/examples/mount/Makefile
+++ b/nuttx/examples/mount/Makefile
@@ -66,9 +66,10 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- rm -f $(BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
+ @rm -f $(BIN) *~ .*.swp
+ $(call CLEAN)
distclean: clean
- rm -f Make.dep .depend
+ @rm -f Make.dep .depend
-include Make.dep