summaryrefslogtreecommitdiff
path: root/apps/examples/elf/tests
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-20 15:47:41 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-20 15:47:41 +0000
commit77ad659e51fb38eb5c827aa4c6d0b8ac3415a580 (patch)
treed1c5f0308d3f7b846b88ccaa29b84e3c4bbaeadc /apps/examples/elf/tests
parent8c0474bfc9059fa10f50792680b683b3266413e6 (diff)
downloadnuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.tar.gz
nuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.tar.bz2
nuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.zip
Missing comma in EVERY DELFILE/DELDIR macro call in every Makefile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/elf/tests')
-rw-r--r--apps/examples/elf/tests/errno/Makefile2
-rw-r--r--apps/examples/elf/tests/hello/Makefile2
-rw-r--r--apps/examples/elf/tests/helloxx/Makefile8
-rw-r--r--apps/examples/elf/tests/longjmp/Makefile2
-rw-r--r--apps/examples/elf/tests/mutex/Makefile2
-rw-r--r--apps/examples/elf/tests/pthread/Makefile2
-rw-r--r--apps/examples/elf/tests/signal/Makefile2
-rw-r--r--apps/examples/elf/tests/struct/Makefile2
-rw-r--r--apps/examples/elf/tests/task/Makefile2
9 files changed, 12 insertions, 12 deletions
diff --git a/apps/examples/elf/tests/errno/Makefile b/apps/examples/elf/tests/errno/Makefile
index 08bffc7dd..ca2f34bf9 100644
--- a/apps/examples/elf/tests/errno/Makefile
+++ b/apps/examples/elf/tests/errno/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/hello/Makefile b/apps/examples/elf/tests/hello/Makefile
index d4af19e02..5cd80411b 100644
--- a/apps/examples/elf/tests/hello/Makefile
+++ b/apps/examples/elf/tests/hello/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/helloxx/Makefile b/apps/examples/elf/tests/helloxx/Makefile
index e1c9cfc5b..cce33d843 100644
--- a/apps/examples/elf/tests/helloxx/Makefile
+++ b/apps/examples/elf/tests/helloxx/Makefile
@@ -105,10 +105,10 @@ endif
# $(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN1))
- $(call DELFILE $(BIN2))
- $(call DELFILE $(BIN3))
- $(call DELFILE $(BIN4))
+ $(call DELFILE, $(BIN1))
+ $(call DELFILE, $(BIN2))
+ $(call DELFILE, $(BIN3))
+ $(call DELFILE, $(BIN4))
$(call CLEAN)
install: $(ALL_BIN)
diff --git a/apps/examples/elf/tests/longjmp/Makefile b/apps/examples/elf/tests/longjmp/Makefile
index e7a54fc00..6ddbf9b8d 100644
--- a/apps/examples/elf/tests/longjmp/Makefile
+++ b/apps/examples/elf/tests/longjmp/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/mutex/Makefile b/apps/examples/elf/tests/mutex/Makefile
index 958c0c38e..04c1e8975 100644
--- a/apps/examples/elf/tests/mutex/Makefile
+++ b/apps/examples/elf/tests/mutex/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/pthread/Makefile b/apps/examples/elf/tests/pthread/Makefile
index a491b9874..05c7c4650 100644
--- a/apps/examples/elf/tests/pthread/Makefile
+++ b/apps/examples/elf/tests/pthread/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/signal/Makefile b/apps/examples/elf/tests/signal/Makefile
index 227f99521..55ef2e5b9 100644
--- a/apps/examples/elf/tests/signal/Makefile
+++ b/apps/examples/elf/tests/signal/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/struct/Makefile b/apps/examples/elf/tests/struct/Makefile
index 3224c655e..369fcb368 100644
--- a/apps/examples/elf/tests/struct/Makefile
+++ b/apps/examples/elf/tests/struct/Makefile
@@ -52,7 +52,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install:
diff --git a/apps/examples/elf/tests/task/Makefile b/apps/examples/elf/tests/task/Makefile
index cf56b1287..c30fa8076 100644
--- a/apps/examples/elf/tests/task/Makefile
+++ b/apps/examples/elf/tests/task/Makefile
@@ -51,7 +51,7 @@ $(BIN): $(OBJS)
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
install: