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 --- nuttx/syscall/Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'nuttx/syscall') diff --git a/nuttx/syscall/Makefile b/nuttx/syscall/Makefile index 15e06e097..ec2627b46 100644 --- a/nuttx/syscall/Makefile +++ b/nuttx/syscall/Makefile @@ -95,20 +95,20 @@ $(MKSYSCALL): context: $(MKSYSCALL) .context clean: - $(call DELFILE $(BIN1)) - $(call DELFILE $(BIN2)) + $(call DELFILE, $(BIN1)) + $(call DELFILE, $(BIN2)) ifneq ($(OBJEXT),) - $(call DELFILE proxies$(DELIM)*$(OBJEXT)) - $(call DELFILE stubs$(DELIM)*$(OBJEXT)) + $(call DELFILE, proxies$(DELIM)*$(OBJEXT)) + $(call DELFILE, stubs$(DELIM)*$(OBJEXT)) endif $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) - $(call DELFILE proxies$(DELIM)*.c) - $(call DELFILE stubs$(DELIM)*.c) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) + $(call DELFILE, proxies$(DELIM)*.c) + $(call DELFILE, stubs$(DELIM)*.c) -include Make.dep -- cgit v1.2.3