summaryrefslogtreecommitdiff
path: root/nuttx/configs/sam3u-ek
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
commit77ad659e51fb38eb5c827aa4c6d0b8ac3415a580 (patch)
treed1c5f0308d3f7b846b88ccaa29b84e3c4bbaeadc /nuttx/configs/sam3u-ek
parent8c0474bfc9059fa10f50792680b683b3266413e6 (diff)
downloadpx4-nuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.tar.gz
px4-nuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.tar.bz2
px4-nuttx-77ad659e51fb38eb5c827aa4c6d0b8ac3415a580.zip
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
Diffstat (limited to 'nuttx/configs/sam3u-ek')
-rw-r--r--nuttx/configs/sam3u-ek/kernel/Makefile6
-rw-r--r--nuttx/configs/sam3u-ek/src/Makefile6
2 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/configs/sam3u-ek/kernel/Makefile b/nuttx/configs/sam3u-ek/kernel/Makefile
index 6daf62253..e9a7ef7ff 100644
--- a/nuttx/configs/sam3u-ek/kernel/Makefile
+++ b/nuttx/configs/sam3u-ek/kernel/Makefile
@@ -128,9 +128,9 @@ $(BOARD_INCLUDE)$(DELIM)user_map.h: $(TOPDIR)$(DELIM)User.map
depend: .depend
clean:
- $(call DELFILE nuttx_user.elf)
- $(call DELFILE "$(TOPDIR)$(DELIM)nuttx_user.elf")
- $(call DELFILE "$(TOPDIR)$(DELIM)User.map")
+ $(call DELFILE, nuttx_user.elf)
+ $(call DELFILE, "$(TOPDIR)$(DELIM)nuttx_user.elf")
+ $(call DELFILE, "$(TOPDIR)$(DELIM)User.map")
$(call CLEAN)
distclean: clean
diff --git a/nuttx/configs/sam3u-ek/src/Makefile b/nuttx/configs/sam3u-ek/src/Makefile
index 08ccb2f46..381341e6a 100644
--- a/nuttx/configs/sam3u-ek/src/Makefile
+++ b/nuttx/configs/sam3u-ek/src/Makefile
@@ -85,11 +85,11 @@ libboard$(LIBEXT): $(OBJS)
depend: .depend
clean:
- $(call DELFILE libboard$(LIBEXT))
+ $(call DELFILE, libboard$(LIBEXT))
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep