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/namedapp/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/namedapp') diff --git a/apps/namedapp/Makefile b/apps/namedapp/Makefile index f52e8a9d5..a88c73567 100644 --- a/apps/namedapp/Makefile +++ b/apps/namedapp/Makefile @@ -96,15 +96,15 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) - $(call DELFILE namedapp_list.h) - $(call DELFILE namedapp_proto.h) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) + $(call DELFILE, namedapp_list.h) + $(call DELFILE, namedapp_proto.h) -include Make.dep -- cgit v1.2.3