summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-10 18:23:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-10 18:23:08 +0000
commit45dd00a858ab5294f218ab8cda1cc14e6daf7cbc (patch)
tree3ca971f913c5020e3a5c6801f71682d5e3a7ff6c /nuttx
parent28a9cfef1704bbb553cecc1527360553ad56f010 (diff)
downloadpx4-nuttx-45dd00a858ab5294f218ab8cda1cc14e6daf7cbc.tar.gz
px4-nuttx-45dd00a858ab5294f218ab8cda1cc14e6daf7cbc.tar.bz2
px4-nuttx-45dd00a858ab5294f218ab8cda1cc14e6daf7cbc.zip
Using tool-specific clean
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@545 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/examples/ostest/Makefile5
-rw-r--r--nuttx/examples/udp/Makefile5
-rw-r--r--nuttx/examples/uip/Makefile5
-rw-r--r--nuttx/fs/Makefile5
-rw-r--r--nuttx/lib/Makefile5
-rw-r--r--nuttx/mm/Makefile6
-rw-r--r--nuttx/mm/Makefile.test10
-rw-r--r--nuttx/net/Makefile6
-rw-r--r--nuttx/netutils/Makefile10
-rw-r--r--nuttx/sched/Makefile6
-rw-r--r--nuttx/tools/Makefile.mkconfig10
11 files changed, 41 insertions, 32 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index f473e08d5..05f76f92f 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -89,9 +89,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
diff --git a/nuttx/examples/udp/Makefile b/nuttx/examples/udp/Makefile
index 1d3e67590..a4d4fdd5e 100644
--- a/nuttx/examples/udp/Makefile
+++ b/nuttx/examples/udp/Makefile
@@ -95,9 +95,10 @@ $(HOST_BIN): $(HOST_OBJS)
depend: .depend
clean:
- rm -f $(TARG_BIN) $(HOST_BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
+ @rm -f $(TARG_BIN) $(HOST_BIN) *~ .*.swp
+ $(call CLEAN)
distclean: clean
- rm -f Make.dep .depend
+ @rm -f Make.dep .depend
-include Make.dep
diff --git a/nuttx/examples/uip/Makefile b/nuttx/examples/uip/Makefile
index 0408b9b7c..c9b6932d8 100644
--- a/nuttx/examples/uip/Makefile
+++ b/nuttx/examples/uip/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
diff --git a/nuttx/fs/Makefile b/nuttx/fs/Makefile
index ee7a36150..267f89355 100644
--- a/nuttx/fs/Makefile
+++ b/nuttx/fs/Makefile
@@ -89,9 +89,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
diff --git a/nuttx/lib/Makefile b/nuttx/lib/Makefile
index b2a8f8af0..a0a4e2807 100644
--- a/nuttx/lib/Makefile
+++ b/nuttx/lib/Makefile
@@ -110,9 +110,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
diff --git a/nuttx/mm/Makefile b/nuttx/mm/Makefile
index e7495b77c..d4ee105d5 100644
--- a/nuttx/mm/Makefile
+++ b/nuttx/mm/Makefile
@@ -67,11 +67,11 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- rm -f $(BIN) *.asm *.lst *.sym *.adb *~ .*.swp
- if [ ! -z "$(OBJEXT)" ]; then rm -f *$(OBJEXT); fi
+ @rm -f $(BIN) *~ .*.swp
+ $(call CLEAN)
distclean: clean
- rm -f Make.dep .depend
+ @rm -f Make.dep .depend
-include Make.dep
diff --git a/nuttx/mm/Makefile.test b/nuttx/mm/Makefile.test
index 1ff3f9913..26839de81 100644
--- a/nuttx/mm/Makefile.test
+++ b/nuttx/mm/Makefile.test
@@ -1,7 +1,7 @@
-############################################################
+############################################################################
# Makefile.test
#
-# Copyright (C) 2007 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
-# 3. Neither the name Gregory Nutt nor the names of its contributors may be
+# 3. Neither the name NuttX nor the names of its contributors may be
# used to endorse or promote products derived from this software
# without specific prior written permission.
#
@@ -31,7 +31,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-############################################################
+############################################################################
SRCS = mm_test.c mm_initialize.c mm_sem.c mm_addfreechunk.c mm_size2ndx.c mm_shrinkchunk.c \
mm_malloc.c mm_zalloc.c mm_calloc.c mm_realloc.c \
@@ -61,4 +61,4 @@ $(BIN): $(OBJS)
$(LD) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
clean:
- rm -f $(BIN) *.o1 *~
+ @rm -f $(BIN) *.o1 *~
diff --git a/nuttx/net/Makefile b/nuttx/net/Makefile
index 5124a64ad..42a02fdf0 100644
--- a/nuttx/net/Makefile
+++ b/nuttx/net/Makefile
@@ -94,9 +94,9 @@ endif
depend: .depend
clean:
- rm -f $(BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
- rm -f uip/*~
- if [ ! -z "$(OBJEXT)" ]; then rm -f *$(OBJEXT); fi
+ @rm -f $(BIN) *~ .*.swp
+ @rm -f uip/*~ uip/.*.swp
+ $(call CLEAN)
distclean: clean
rm -f Make.dep .depend
diff --git a/nuttx/netutils/Makefile b/nuttx/netutils/Makefile
index 36f03d3b8..73e068500 100644
--- a/nuttx/netutils/Makefile
+++ b/nuttx/netutils/Makefile
@@ -50,6 +50,8 @@ include resolv/Make.defs
endif
endif
+SUBDIRS = uiplib dhcpc dhcpd resolv smtp telnetd webclient webserver
+
ASRCS = $(UIPLIB_ASRCS) $(DHCPC_ASRCS) $(DHCPD_ASRCS) $(RESOLV_ASRCS) \
$(SMTP_ASRCS) $(TELNETD_ASRCS) $(WEBCLIENT_ASRCS) $(WEBSERVER_ASRCS)
AOBJS = $(ASRCS:.S=$(OBJEXT))
@@ -90,9 +92,11 @@ endif
depend: .depend
clean:
- @rm -f $(BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
- @rm -f uiplib/*~ dhcpc/*~ dhcpd/*~ resolv/*~ smtp/*~ telnetd/*~ webclient/*~ webserver/*~
- @if [ ! -z "$(OBJEXT)" ]; then rm -f *$(OBJEXT); fi
+ @rm -f $(BIN) *~ .*.swp
+ $(call CLEAN)
+ @( for dir in $(SUBDIRS); do \
+ rm $(dir)/*~ $(dir)/.*.swp; \
+ done ; )
@$(MAKE) -C dhcpd -f Makefile.host clean
distclean: clean
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 749f1b0a7..f2ba461df 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -159,10 +159,10 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- rm -f $(BIN) *.o *.obj *.rel *.asm *.lst *.sym *.adb *~
- if [ ! -z "$(OBJEXT)" ]; then rm -f *$(OBJEXT); fi
+ @rm -f $(BIN) *~ .*.swp
+ $(call CLEAN)
distclean: clean
- rm -f Make.dep .depend
+ @rm -f Make.dep .depend
-include Make.dep
diff --git a/nuttx/tools/Makefile.mkconfig b/nuttx/tools/Makefile.mkconfig
index 7f206e078..42262d2b2 100644
--- a/nuttx/tools/Makefile.mkconfig
+++ b/nuttx/tools/Makefile.mkconfig
@@ -1,7 +1,7 @@
-############################################################
+############################################################################
# Makefile.mkconfig
#
-# Copyright (C) 2007 Gregory Nutt. All rights reserved.
+# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
-# 3. Neither the name Gregory Nutt nor the names of its contributors may be
+# 3. Neither the name NuttX nor the names of its contributors may be
# used to endorse or promote products derived from this software
# without specific prior written permission.
#
@@ -31,13 +31,13 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-############################################################
+############################################################################
all: mkconfig
default: mkconfig
mkconfig: mkconfig.c
- gcc -O2 -Wall -o mkconfig mkconfig.c
+ @gcc -O2 -Wall -o mkconfig mkconfig.c
clean:
@rm -f mkconfig mkconfig.exe *~