summaryrefslogtreecommitdiff
path: root/apps/examples/nxflat/tests/hello++
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/nxflat/tests/hello++
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/nxflat/tests/hello++')
-rw-r--r--apps/examples/nxflat/tests/hello++/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/examples/nxflat/tests/hello++/Makefile b/apps/examples/nxflat/tests/hello++/Makefile
index 445049e94..739562905 100644
--- a/apps/examples/nxflat/tests/hello++/Makefile
+++ b/apps/examples/nxflat/tests/hello++/Makefile
@@ -163,16 +163,16 @@ $(BIN3): $(BIN3).r2
# $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN1))
- $(call DELFILE $(BIN2))
- $(call DELFILE $(BIN3))
- $(call DELFILE $(BIN4))
- $(call DELFILE $(R2SRC1))
- $(call DELFILE $(R2SRC2))
- $(call DELFILE $(R2SRC3))
- $(call DELFILE $(R2SRC4))
- $(call DELFILE *.r1)
- $(call DELFILE *.r2)
+ $(call DELFILE, $(BIN1))
+ $(call DELFILE, $(BIN2))
+ $(call DELFILE, $(BIN3))
+ $(call DELFILE, $(BIN4))
+ $(call DELFILE, $(R2SRC1))
+ $(call DELFILE, $(R2SRC2))
+ $(call DELFILE, $(R2SRC3))
+ $(call DELFILE, $(R2SRC4))
+ $(call DELFILE, *.r1)
+ $(call DELFILE, *.r2)
$(call CLEAN)
install: $(ALL_BIN)