From f552862bb546891ecc51cda2fe662c630ff019cb Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 20 Nov 2012 15:47:41 +0000 Subject: Missing comma in EVERY DELFILE/DELDIR macro call in every Makefile git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3 --- apps/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'apps/Makefile') 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 *"; \ -- cgit v1.2.3