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 --- apps/system/free/Makefile | 8 ++++---- apps/system/i2c/Makefile | 8 ++++---- apps/system/install/Makefile | 8 ++++---- apps/system/poweroff/Makefile | 8 ++++---- apps/system/ramtron/Makefile | 8 ++++---- apps/system/readline/Makefile | 8 ++++---- apps/system/sdcard/Makefile | 8 ++++---- apps/system/sysinfo/Makefile | 8 ++++---- 8 files changed, 32 insertions(+), 32 deletions(-) (limited to 'apps/system') diff --git a/apps/system/free/Makefile b/apps/system/free/Makefile index 9637fa772..dada00d99 100644 --- a/apps/system/free/Makefile +++ b/apps/system/free/Makefile @@ -107,12 +107,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/i2c/Makefile b/apps/system/i2c/Makefile index 7cdbcdf59..029d2b6fe 100644 --- a/apps/system/i2c/Makefile +++ b/apps/system/i2c/Makefile @@ -93,13 +93,13 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/install/Makefile b/apps/system/install/Makefile index 951917a77..6a02d859f 100644 --- a/apps/system/install/Makefile +++ b/apps/system/install/Makefile @@ -108,12 +108,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/poweroff/Makefile b/apps/system/poweroff/Makefile index 46b595e84..bbceccb9e 100644 --- a/apps/system/poweroff/Makefile +++ b/apps/system/poweroff/Makefile @@ -108,12 +108,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/ramtron/Makefile b/apps/system/ramtron/Makefile index 60a2be66a..9f5af1659 100644 --- a/apps/system/ramtron/Makefile +++ b/apps/system/ramtron/Makefile @@ -108,12 +108,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/readline/Makefile b/apps/system/readline/Makefile index f67dc85f6..3a48d324e 100644 --- a/apps/system/readline/Makefile +++ b/apps/system/readline/Makefile @@ -96,12 +96,12 @@ depend: .depend # Housekeeping targets clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/sdcard/Makefile b/apps/system/sdcard/Makefile index ee95505a2..6d5d12960 100644 --- a/apps/system/sdcard/Makefile +++ b/apps/system/sdcard/Makefile @@ -108,12 +108,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep diff --git a/apps/system/sysinfo/Makefile b/apps/system/sysinfo/Makefile index 06c27a8be..fa6aebf71 100644 --- a/apps/system/sysinfo/Makefile +++ b/apps/system/sysinfo/Makefile @@ -108,12 +108,12 @@ context: .context depend: .depend clean: - $(call DELFILE .built) + $(call DELFILE, .built) $(call CLEAN) distclean: clean - $(call DELFILE .context) - $(call DELFILE Make.dep) - $(call DELFILE .depend) + $(call DELFILE, .context) + $(call DELFILE, Make.dep) + $(call DELFILE, .depend) -include Make.dep -- cgit v1.2.3