summaryrefslogtreecommitdiff
path: root/NxWidgets
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 /NxWidgets
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 'NxWidgets')
-rw-r--r--NxWidgets/UnitTests/CButton/Makefile6
-rw-r--r--NxWidgets/UnitTests/CButtonArray/Makefile6
-rw-r--r--NxWidgets/UnitTests/CCheckBox/Makefile6
-rw-r--r--NxWidgets/UnitTests/CGlyphButton/Makefile6
-rw-r--r--NxWidgets/UnitTests/CImage/Makefile6
-rw-r--r--NxWidgets/UnitTests/CKeypad/Makefile6
-rw-r--r--NxWidgets/UnitTests/CLabel/Makefile6
-rw-r--r--NxWidgets/UnitTests/CLatchButton/Makefile6
-rw-r--r--NxWidgets/UnitTests/CLatchButtonArray/Makefile6
-rw-r--r--NxWidgets/UnitTests/CListBox/Makefile6
-rw-r--r--NxWidgets/UnitTests/CProgressBar/Makefile6
-rw-r--r--NxWidgets/UnitTests/CRadioButton/Makefile6
-rw-r--r--NxWidgets/UnitTests/CScrollbarHorizontal/Makefile6
-rw-r--r--NxWidgets/UnitTests/CScrollbarVertical/Makefile6
-rw-r--r--NxWidgets/UnitTests/CSliderHorizonal/Makefile6
-rw-r--r--NxWidgets/UnitTests/CSliderVertical/Makefile6
-rw-r--r--NxWidgets/UnitTests/CTextBox/Makefile6
-rw-r--r--NxWidgets/UnitTests/nxwm/Makefile6
-rw-r--r--NxWidgets/libnxwidgets/Makefile6
-rw-r--r--NxWidgets/nxwm/Makefile6
20 files changed, 60 insertions, 60 deletions
diff --git a/NxWidgets/UnitTests/CButton/Makefile b/NxWidgets/UnitTests/CButton/Makefile
index 778d46513..d80ef3c76 100644
--- a/NxWidgets/UnitTests/CButton/Makefile
+++ b/NxWidgets/UnitTests/CButton/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CButtonArray/Makefile b/NxWidgets/UnitTests/CButtonArray/Makefile
index 39af8ff3a..b4a3b0571 100644
--- a/NxWidgets/UnitTests/CButtonArray/Makefile
+++ b/NxWidgets/UnitTests/CButtonArray/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CCheckBox/Makefile b/NxWidgets/UnitTests/CCheckBox/Makefile
index 583817857..21e007b3d 100644
--- a/NxWidgets/UnitTests/CCheckBox/Makefile
+++ b/NxWidgets/UnitTests/CCheckBox/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CGlyphButton/Makefile b/NxWidgets/UnitTests/CGlyphButton/Makefile
index e61f960d1..1e7faf026 100644
--- a/NxWidgets/UnitTests/CGlyphButton/Makefile
+++ b/NxWidgets/UnitTests/CGlyphButton/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CImage/Makefile b/NxWidgets/UnitTests/CImage/Makefile
index 88e786505..61978147e 100644
--- a/NxWidgets/UnitTests/CImage/Makefile
+++ b/NxWidgets/UnitTests/CImage/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CKeypad/Makefile b/NxWidgets/UnitTests/CKeypad/Makefile
index 873b7a695..d27b90192 100644
--- a/NxWidgets/UnitTests/CKeypad/Makefile
+++ b/NxWidgets/UnitTests/CKeypad/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CLabel/Makefile b/NxWidgets/UnitTests/CLabel/Makefile
index 5122558ff..14e8897d2 100644
--- a/NxWidgets/UnitTests/CLabel/Makefile
+++ b/NxWidgets/UnitTests/CLabel/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CLatchButton/Makefile b/NxWidgets/UnitTests/CLatchButton/Makefile
index d38872079..435a4c3cd 100644
--- a/NxWidgets/UnitTests/CLatchButton/Makefile
+++ b/NxWidgets/UnitTests/CLatchButton/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CLatchButtonArray/Makefile b/NxWidgets/UnitTests/CLatchButtonArray/Makefile
index 94a2bc49e..0f6fe639f 100644
--- a/NxWidgets/UnitTests/CLatchButtonArray/Makefile
+++ b/NxWidgets/UnitTests/CLatchButtonArray/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CListBox/Makefile b/NxWidgets/UnitTests/CListBox/Makefile
index ca9055870..301424c47 100644
--- a/NxWidgets/UnitTests/CListBox/Makefile
+++ b/NxWidgets/UnitTests/CListBox/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CProgressBar/Makefile b/NxWidgets/UnitTests/CProgressBar/Makefile
index b9c498df9..d50d3ed05 100644
--- a/NxWidgets/UnitTests/CProgressBar/Makefile
+++ b/NxWidgets/UnitTests/CProgressBar/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CRadioButton/Makefile b/NxWidgets/UnitTests/CRadioButton/Makefile
index 0a96580e0..ff6c2d247 100644
--- a/NxWidgets/UnitTests/CRadioButton/Makefile
+++ b/NxWidgets/UnitTests/CRadioButton/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CScrollbarHorizontal/Makefile b/NxWidgets/UnitTests/CScrollbarHorizontal/Makefile
index 0fe12318b..a5fab0dda 100644
--- a/NxWidgets/UnitTests/CScrollbarHorizontal/Makefile
+++ b/NxWidgets/UnitTests/CScrollbarHorizontal/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CScrollbarVertical/Makefile b/NxWidgets/UnitTests/CScrollbarVertical/Makefile
index 60fb0b545..204b90a52 100644
--- a/NxWidgets/UnitTests/CScrollbarVertical/Makefile
+++ b/NxWidgets/UnitTests/CScrollbarVertical/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CSliderHorizonal/Makefile b/NxWidgets/UnitTests/CSliderHorizonal/Makefile
index 5675c55bf..67f00f622 100644
--- a/NxWidgets/UnitTests/CSliderHorizonal/Makefile
+++ b/NxWidgets/UnitTests/CSliderHorizonal/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CSliderVertical/Makefile b/NxWidgets/UnitTests/CSliderVertical/Makefile
index 78dc6dc8d..409f361fd 100644
--- a/NxWidgets/UnitTests/CSliderVertical/Makefile
+++ b/NxWidgets/UnitTests/CSliderVertical/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/CTextBox/Makefile b/NxWidgets/UnitTests/CTextBox/Makefile
index c913b50a4..a4c752e6c 100644
--- a/NxWidgets/UnitTests/CTextBox/Makefile
+++ b/NxWidgets/UnitTests/CTextBox/Makefile
@@ -159,11 +159,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/UnitTests/nxwm/Makefile b/NxWidgets/UnitTests/nxwm/Makefile
index 205caf879..338b83e54 100644
--- a/NxWidgets/UnitTests/nxwm/Makefile
+++ b/NxWidgets/UnitTests/nxwm/Makefile
@@ -189,11 +189,11 @@ context: .context
depend: .depend
clean:
- $(call DELFILE .built)
+ $(call DELFILE, .built)
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/NxWidgets/libnxwidgets/Makefile b/NxWidgets/libnxwidgets/Makefile
index 27a85b428..0c7c922ea 100644
--- a/NxWidgets/libnxwidgets/Makefile
+++ b/NxWidgets/libnxwidgets/Makefile
@@ -132,12 +132,12 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
export: $(BIN)
zip -r nxwidgets-export.zip include $(BIN) COPYING
diff --git a/NxWidgets/nxwm/Makefile b/NxWidgets/nxwm/Makefile
index b176ce4f7..0bea357b2 100644
--- a/NxWidgets/nxwm/Makefile
+++ b/NxWidgets/nxwm/Makefile
@@ -136,12 +136,12 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
distclean: clean
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
export: $(BIN)
zip -r nxwm-export.zip include $(BIN) COPYING