summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-05-30 15:24:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-05-30 15:24:22 -0600
commit622591fb019b38e7e3daeaee079e26d9ca27394f (patch)
treea79cc8318d8639b11fde9dc3d3591198d58efe4e /apps
parent1bc74b1308d24b6a9c7a58421f0cb89fbd593da6 (diff)
downloadnuttx-622591fb019b38e7e3daeaee079e26d9ca27394f.tar.gz
nuttx-622591fb019b38e7e3daeaee079e26d9ca27394f.tar.bz2
nuttx-622591fb019b38e7e3daeaee079e26d9ca27394f.zip
The Makefile in every directory that can generate a .dSYM should also clean .dSYM files
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/igmp/.gitignore1
-rw-r--r--apps/examples/nettest/Makefile1
-rw-r--r--apps/examples/poll/Makefile1
-rw-r--r--apps/examples/posix_spawn/filesystem/hello/Makefile1
-rw-r--r--apps/examples/posix_spawn/filesystem/redirect/Makefile1
-rw-r--r--apps/examples/udp/Makefile1
6 files changed, 5 insertions, 1 deletions
diff --git a/apps/examples/igmp/.gitignore b/apps/examples/igmp/.gitignore
index cfcfc3a67..c2a890874 100644
--- a/apps/examples/igmp/.gitignore
+++ b/apps/examples/igmp/.gitignore
@@ -11,4 +11,3 @@
/*.lib
/*.src
/*.exe
-/*.dSYM
diff --git a/apps/examples/nettest/Makefile b/apps/examples/nettest/Makefile
index c533c9dd5..727773f69 100644
--- a/apps/examples/nettest/Makefile
+++ b/apps/examples/nettest/Makefile
@@ -135,6 +135,7 @@ clean:
$(call DELFILE, *$(HOSTOBJEXT))
$(call DELFILE, $(HOST_BIN))
$(call DELFILE, .built)
+ $(call DELFILE, *.dSYM)
$(call CLEAN)
distclean: clean
diff --git a/apps/examples/poll/Makefile b/apps/examples/poll/Makefile
index 13173f125..7507e6449 100644
--- a/apps/examples/poll/Makefile
+++ b/apps/examples/poll/Makefile
@@ -94,5 +94,6 @@ distclean: clean
$(call DELFILE, Make.dep)
$(call DELFILE, .depend)
$(call DELFILE, host$(HOSTEXEEXT))
+ $(call DELFILE, *.dSYM)
-include Make.dep
diff --git a/apps/examples/posix_spawn/filesystem/hello/Makefile b/apps/examples/posix_spawn/filesystem/hello/Makefile
index 5cd80411b..ac67f84a0 100644
--- a/apps/examples/posix_spawn/filesystem/hello/Makefile
+++ b/apps/examples/posix_spawn/filesystem/hello/Makefile
@@ -52,6 +52,7 @@ $(BIN): $(OBJS)
clean:
$(call DELFILE, $(BIN))
+ $(call DELFILE, *.dSYM)
$(call CLEAN)
install:
diff --git a/apps/examples/posix_spawn/filesystem/redirect/Makefile b/apps/examples/posix_spawn/filesystem/redirect/Makefile
index e5f5e985c..59aba9a75 100644
--- a/apps/examples/posix_spawn/filesystem/redirect/Makefile
+++ b/apps/examples/posix_spawn/filesystem/redirect/Makefile
@@ -52,6 +52,7 @@ $(BIN): $(OBJS)
clean:
$(call DELFILE, $(BIN))
+ $(call DELFILE, *.dSYM)
$(call CLEAN)
install:
diff --git a/apps/examples/udp/Makefile b/apps/examples/udp/Makefile
index 9c35cc94f..118c42307 100644
--- a/apps/examples/udp/Makefile
+++ b/apps/examples/udp/Makefile
@@ -119,6 +119,7 @@ clean:
$(call DELFILE, .built)
$(call DELFILE, $(TARG_BIN))
$(call DELFILE, $(HOST_BIN))
+ $(call DELFILE, *.dSYM)
$(call CLEAN)
distclean: clean