summaryrefslogtreecommitdiff
path: root/apps/examples/wget
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/wget
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/wget')
-rw-r--r--apps/examples/wget/Makefile6
-rw-r--r--apps/examples/wget/Makefile.host4
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/wget/Makefile b/apps/examples/wget/Makefile
index d74c248e9..3e5f5d63d 100644
--- a/apps/examples/wget/Makefile
+++ b/apps/examples/wget/Makefile
@@ -86,13 +86,13 @@ context:
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
@$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/apps/examples/wget/Makefile.host b/apps/examples/wget/Makefile.host
index 14da45c7e..3895835d8 100644
--- a/apps/examples/wget/Makefile.host
+++ b/apps/examples/wget/Makefile.host
@@ -71,8 +71,8 @@ $(BIN): headers $(OBJS)
$(HOSTCC) $(HOSTLDFLAGS) $(OBJS) -o $@
clean:
- $(call DELFILE $(BIN).*)
- $(call DELFILE *.o1)
+ $(call DELFILE, $(BIN).*)
+ $(call DELFILE, *.o1)
$(call CLEAN)
@rm -rf net nuttx