summaryrefslogtreecommitdiff
path: root/nuttx/Makefile.win
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/Makefile.win
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/Makefile.win')
-rw-r--r--nuttx/Makefile.win44
1 files changed, 22 insertions, 22 deletions
diff --git a/nuttx/Makefile.win b/nuttx/Makefile.win
index 4fe0b2aa1..5cb6aa353 100644
--- a/nuttx/Makefile.win
+++ b/nuttx/Makefile.win
@@ -438,16 +438,16 @@ context: check_context include\nuttx\config.h include\nuttx\version.h include\ma
# and symbolic links created by the context target.
clean_context:
- $(call DELFILE include\nuttx\config.h)
- $(call DELFILE include\nuttx\version.h)
- $(call DELFILE include\math.h)
- $(call DELFILE include\stdarg.h)
- $(call DELDIR include\arch\board)
- $(call DELDIR include\arch\chip)
- $(call DELDIR include\arch)
- $(call DELDIR $(ARCH_SRC)\board)
- $(call DELDIR $(ARCH_SRC)\chip)
- $(call DELDIR include\apps)
+ $(call DELFILE, include\nuttx\config.h)
+ $(call DELFILE, include\nuttx\version.h)
+ $(call DELFILE, include\math.h)
+ $(call DELFILE, include\stdarg.h)
+ $(call DELDIR, include\arch\board)
+ $(call DELDIR, include\arch\chip)
+ $(call DELDIR, include\arch)
+ $(call DELDIR, $(ARCH_SRC)\board)
+ $(call DELDIR, $(ARCH_SRC)\chip)
+ $(call DELDIR, include\apps)
# check_context
#
@@ -688,12 +688,12 @@ ifeq ($(CONFIG_BUILD_2PASS),y)
endif
clean: subdir_clean
- $(call DELFILE $(BIN))
- $(call DELFILE nuttx.*)
- $(call DELFILE mm_test)
- $(call DELFILE *.map)
- $(call DELFILE _SAVED_APPS_config)
- $(call DELFILE nuttx-export*)
+ $(call DELFILE, $(BIN))
+ $(call DELFILE, nuttx.*)
+ $(call DELFILE, mm_test)
+ $(call DELFILE, *.map)
+ $(call DELFILE, _SAVED_APPS_config)
+ $(call DELFILE, nuttx-export*)
$(call CLEAN)
subdir_distclean:
@@ -703,11 +703,11 @@ distclean: clean subdir_distclean clean_context
ifeq ($(CONFIG_BUILD_2PASS),y)
$(Q) $(MAKE) -C $(CONFIG_PASS1_BUILDIR) TOPDIR="$(TOPDIR)" distclean
endif
- $(call DELFILE Make.defs)
- $(call DELFILE setenv.sh)
- $(call DELFILE setenv.bat)
- $(call DELFILE .config)
- $(call DELFILE .config.old)
+ $(call DELFILE, Make.defs)
+ $(call DELFILE, setenv.sh)
+ $(call DELFILE, setenv.bat)
+ $(call DELFILE, .config)
+ $(call DELFILE, .config.old)
# Application housekeeping targets. The APPDIR variable refers to the user
# application directory. A sample apps\ directory is included with NuttX,
@@ -732,7 +732,7 @@ endif
apps_distclean:
ifneq ($(APPDIR),)
- $(call DELFILE _SAVED_APPS_config
+ $(call DELFILE, _SAVED_APPS_config
$(Q) if exist "$(TOPDIR)\$(APPDIR)\.config" ( cp "$(TOPDIR)\$(APPDIR)\.config" _SAVED_APPS_config )
$(Q) $(MAKE) -C "$(TOPDIR)\$(APPDIR)" TOPDIR="$(TOPDIR)" distclean
$(Q) if exist _SAVED_APPS_config ( mv _SAVED_APPS_config "$(TOPDIR)\$(APPDIR)\.config" )