summaryrefslogtreecommitdiff
path: root/apps/examples/thttpd
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/thttpd
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/thttpd')
-rw-r--r--apps/examples/thttpd/Makefile6
-rw-r--r--apps/examples/thttpd/content/Makefile4
-rw-r--r--apps/examples/thttpd/content/hello/Makefile8
-rw-r--r--apps/examples/thttpd/content/netstat/Makefile8
-rw-r--r--apps/examples/thttpd/content/tasks/Makefile8
5 files changed, 17 insertions, 17 deletions
diff --git a/apps/examples/thttpd/Makefile b/apps/examples/thttpd/Makefile
index 5320a0a13..85a26d39f 100644
--- a/apps/examples/thttpd/Makefile
+++ b/apps/examples/thttpd/Makefile
@@ -89,13 +89,13 @@ context:
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
@$(MAKE) -C content clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
$(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/thttpd/content/Makefile b/apps/examples/thttpd/content/Makefile
index 8a74201b5..b4deddef5 100644
--- a/apps/examples/thttpd/content/Makefile
+++ b/apps/examples/thttpd/content/Makefile
@@ -98,8 +98,8 @@ $(SYMTAB): build
clean: $(foreach DIR, $(SUBDIRS), $(DIR)_clean)
$(call DELFILE$(ROMFS_HDR))
- $(call DELFILE $(ROMFS_IMG))
- $(call DELFILE $(SYMTAB))
+ $(call DELFILE, $(ROMFS_IMG))
+ $(call DELFILE, $(SYMTAB))
@rm -rf $(ROMFS_DIR)
$(call CLEAN)
diff --git a/apps/examples/thttpd/content/hello/Makefile b/apps/examples/thttpd/content/hello/Makefile
index 74ff2116a..2cdead59c 100644
--- a/apps/examples/thttpd/content/hello/Makefile
+++ b/apps/examples/thttpd/content/hello/Makefile
@@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
- $(call DELFILE $(R2SRC))
- $(call DELFILE *.r1)
- $(call DELFILE *.r2)
+ $(call DELFILE, $(BIN))
+ $(call DELFILE, $(R2SRC))
+ $(call DELFILE, *.r1)
+ $(call DELFILE, *.r2)
$(call CLEAN)
install:
diff --git a/apps/examples/thttpd/content/netstat/Makefile b/apps/examples/thttpd/content/netstat/Makefile
index d9953547a..98675bd88 100644
--- a/apps/examples/thttpd/content/netstat/Makefile
+++ b/apps/examples/thttpd/content/netstat/Makefile
@@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
- $(call DELFILE $(R2SRC))
- $(call DELFILE *.r1)
- $(call DELFILE *.r2)
+ $(call DELFILE, $(BIN))
+ $(call DELFILE, $(R2SRC))
+ $(call DELFILE, *.r1)
+ $(call DELFILE, *.r2)
$(call CLEAN)
install:
diff --git a/apps/examples/thttpd/content/tasks/Makefile b/apps/examples/thttpd/content/tasks/Makefile
index c668285d8..bf9811524 100644
--- a/apps/examples/thttpd/content/tasks/Makefile
+++ b/apps/examples/thttpd/content/tasks/Makefile
@@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
clean:
- $(call DELFILE $(BIN))
- $(call DELFILE $(R2SRC))
- $(call DELFILE *.r1)
- $(call DELFILE *.r2)
+ $(call DELFILE, $(BIN))
+ $(call DELFILE, $(R2SRC))
+ $(call DELFILE, *.r1)
+ $(call DELFILE, *.r2)
$(call CLEAN)
install: