summaryrefslogtreecommitdiff
path: root/nuttx/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics')
-rw-r--r--nuttx/graphics/Makefile6
-rw-r--r--nuttx/graphics/nxfonts/Makefile.sources6
-rw-r--r--nuttx/graphics/nxglib/Makefile.sources14
3 files changed, 13 insertions, 13 deletions
diff --git a/nuttx/graphics/Makefile b/nuttx/graphics/Makefile
index ddcfd21d2..238e14df4 100644
--- a/nuttx/graphics/Makefile
+++ b/nuttx/graphics/Makefile
@@ -200,14 +200,14 @@ context: gensources
clean:
$(Q) $(MAKE) -C nxglib -f Makefile.sources clean TOPDIR=$(TOPDIR) EXTRADEFINES=$(EXTRADEFINES)
$(Q) $(MAKE) -C nxfonts -f Makefile.sources clean TOPDIR=$(TOPDIR) EXTRADEFINES=$(EXTRADEFINES)
- $(call DELFILE $(BIN))
+ $(call DELFILE, $(BIN))
$(call CLEAN)
distclean: clean
$(Q) $(MAKE) -C nxglib -f Makefile.sources distclean TOPDIR=$(TOPDIR) EXTRADEFINES=$(EXTRADEFINES)
$(Q) $(MAKE) -C nxfonts -f Makefile.sources distclean TOPDIR=$(TOPDIR) EXTRADEFINES=$(EXTRADEFINES)
- $(call DELFILE Make.dep)
- $(call DELFILE .depend)
+ $(call DELFILE, Make.dep)
+ $(call DELFILE, .depend)
-include Make.dep
diff --git a/nuttx/graphics/nxfonts/Makefile.sources b/nuttx/graphics/nxfonts/Makefile.sources
index eeb47d1b2..76a099dcb 100644
--- a/nuttx/graphics/nxfonts/Makefile.sources
+++ b/nuttx/graphics/nxfonts/Makefile.sources
@@ -181,9 +181,9 @@ $(GEN_CSRC) : $(DEPENDENCY)
$(Q) rm -f $(GEN_TMP)
clean:
- $(call DELFILE *.i)
+ $(call DELFILE, *.i)
$(call CLEAN)
distclean: clean
- $(call DELFILE nxfonts_convert_*bpp.c)
- $(call DELFILE nxfonts_bitmaps_*.c)
+ $(call DELFILE, nxfonts_convert_*bpp.c)
+ $(call DELFILE, nxfonts_bitmaps_*.c)
diff --git a/nuttx/graphics/nxglib/Makefile.sources b/nuttx/graphics/nxglib/Makefile.sources
index bb94c1b20..71d6e0661 100644
--- a/nuttx/graphics/nxglib/Makefile.sources
+++ b/nuttx/graphics/nxglib/Makefile.sources
@@ -163,13 +163,13 @@ ifneq ($(NXGLIB_BITSPERPIXEL),)
endif
clean:
- $(call DELFILE *.i)
+ $(call DELFILE, *.i)
$(call CLEAN)
distclean: clean
- $(call DELFILE nxglib_setpixel_*bpp.c)
- $(call DELFILE nxglib_fillrectangle_*bpp.c)
- $(call DELFILE nxglib_getrectangle_*bpp.c)
- $(call DELFILE nxglib_filltrapezoid_*bpp.c)
- $(call DELFILE nxglib_moverectangle_*bpp.c)
- $(call DELFILE nxglib_copyrectangle_*bpp.c)
+ $(call DELFILE, nxglib_setpixel_*bpp.c)
+ $(call DELFILE, nxglib_fillrectangle_*bpp.c)
+ $(call DELFILE, nxglib_getrectangle_*bpp.c)
+ $(call DELFILE, nxglib_filltrapezoid_*bpp.c)
+ $(call DELFILE, nxglib_moverectangle_*bpp.c)
+ $(call DELFILE, nxglib_copyrectangle_*bpp.c)