summaryrefslogtreecommitdiff
path: root/apps/examples/elf
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/elf')
-rw-r--r--apps/examples/elf/Makefile6
-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
10 files changed, 15 insertions, 15 deletions
diff --git a/apps/examples/elf/Makefile b/apps/examples/elf/Makefile
index ee3413031..1467bf008 100644
--- a/apps/examples/elf/Makefile
+++ b/apps/examples/elf/Makefile
@@ -100,11 +100,11 @@ clean_tests:
@$(MAKE) -C tests TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) clean
clean: clean_tests
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
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: