From 77ad659e51fb38eb5c827aa4c6d0b8ac3415a580 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: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/arch/z16/src/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'nuttx/arch/z16/src/Makefile') diff --git a/nuttx/arch/z16/src/Makefile b/nuttx/arch/z16/src/Makefile index d3f581998..b34d91c68 100644 --- a/nuttx/arch/z16/src/Makefile +++ b/nuttx/arch/z16/src/Makefile @@ -138,19 +138,19 @@ clean: $(MAKE) -C board TOPDIR="$(TOPDIR)" clean ; \ fi ifeq ($(COMPILER),zneocc.exe) - $(call DELFILE nuttx.linkcmd) - $(call DELFILE *.asm) - $(call DELFILE *.tmp) - $(call DELFILE *.map) + $(call DELFILE, nuttx.linkcmd) + $(call DELFILE, *.asm) + $(call DELFILE, *.tmp) + $(call DELFILE, *.map) endif - $(call DELFILE libarch$(LIBEXT)) + $(call DELFILE, libarch$(LIBEXT)) $(call CLEAN) distclean: clean $(Q) if [ -e board/Makefile ]; then \ $(MAKE) -C board TOPDIR="$(TOPDIR)" distclean ; \ fi - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep -- cgit v1.2.3