mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
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
This commit is contained in:
+15
-15
@@ -419,10 +419,10 @@ 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 DELFILE, include/nuttx/config.h)
|
||||
$(call DELFILE, include/nuttx/version.h)
|
||||
$(call DELFILE, include/math.h)
|
||||
$(call DELFILE, include/stdarg.h)
|
||||
$(Q) $(DIRUNLINK) include/arch/board
|
||||
$(Q) $(DIRUNLINK) include/arch/chip
|
||||
$(Q) $(DIRUNLINK) include/arch
|
||||
@@ -686,12 +686,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:
|
||||
@@ -705,11 +705,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,
|
||||
|
||||
Reference in New Issue
Block a user