summaryrefslogtreecommitdiff
path: root/apps/Makefile
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/Makefile
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/Makefile')
-rw-r--r--apps/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 522731722..353894b7f 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -174,7 +174,7 @@ else
$(MAKE) -C $$dir clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"; \
done
endif
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
distclean: # clean
@@ -182,9 +182,9 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
$(Q) for %%G in ($(SUBDIRS)) do ( \
$(MAKE) -C %%G distclean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" \
)
- $(call DELFILE .config)
- $(call DELFILE .context)
- $(call DELFILE .depend)
+ $(call DELFILE, .config)
+ $(call DELFILE, .context)
+ $(call DELFILE, .depend)
$(Q) ( if exist external ( \
echo ********************************************************" \
echo * The external directory/link must be removed manually *" \
@@ -194,9 +194,9 @@ else
$(Q) for dir in $(SUBDIRS) ; do \
$(MAKE) -C $$dir distclean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"; \
done
- $(call DELFILE .config)
- $(call DELFILE .context)
- $(call DELFILE .depend)
+ $(call DELFILE, .config)
+ $(call DELFILE, .context)
+ $(call DELFILE, .depend)
$(Q) ( if [ -e external ]; then \
echo "********************************************************"; \
echo "* The external directory/link must be removed manually *"; \