aboutsummaryrefslogtreecommitdiff
path: root/nuttx/arch/mips
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
commitf552862bb546891ecc51cda2fe662c630ff019cb (patch)
treed1c5f0308d3f7b846b88ccaa29b84e3c4bbaeadc /nuttx/arch/mips
parent6833671f0c73c1b3d4eda7251e64410e421600c4 (diff)
downloadpx4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.tar.gz
px4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.tar.bz2
px4-firmware-f552862bb546891ecc51cda2fe662c630ff019cb.zip
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
Diffstat (limited to 'nuttx/arch/mips')
-rw-r--r--nuttx/arch/mips/src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/mips/src/Makefile b/nuttx/arch/mips/src/Makefile
index b27fe8730..906bac59f 100644
--- a/nuttx/arch/mips/src/Makefile
+++ b/nuttx/arch/mips/src/Makefile
@@ -164,14 +164,14 @@ clean:
ifeq ($(BOARDMAKE),y)
$(Q) $(MAKE) -C board TOPDIR="$(TOPDIR)" clean
endif
- $(call DELFILE libarch$(LIBEXT))
+ $(call DELFILE, libarch$(LIBEXT))
$(call CLEAN)
distclean: clean
ifeq ($(BOARDMAKE),y)
$(Q) $(MAKE) -C board TOPDIR="$(TOPDIR)" distclean
endif
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep