aboutsummaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxfonts/Makefile.sources
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics/nxfonts/Makefile.sources')
-rw-r--r--nuttx/graphics/nxfonts/Makefile.sources14
1 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/graphics/nxfonts/Makefile.sources b/nuttx/graphics/nxfonts/Makefile.sources
index f2aa87caf..76a099dcb 100644
--- a/nuttx/graphics/nxfonts/Makefile.sources
+++ b/nuttx/graphics/nxfonts/Makefile.sources
@@ -33,7 +33,6 @@
#
############################################################################
--include $(TOPDIR)/.config
-include $(TOPDIR)/Make.defs
ifdef NXFONTS_BITSPERPIXEL
@@ -177,13 +176,14 @@ all: $(GEN_CSRC)
.PHONY : clean distclean
$(GEN_CSRC) : $(DEPENDENCY)
- @$(call PREPROCESS, $<, $(GEN_TMP))
- @cat $(GEN_TMP) | sed -e "/^#/d" >$@
- @rm -f $(GEN_TMP)
+ $(call PREPROCESS, $<, $(GEN_TMP))
+ $(Q) cat $(GEN_TMP) | sed -e "/^#/d" >$@
+ $(Q) rm -f $(GEN_TMP)
clean:
- @rm -f *~ .*.swp *.i
+ $(call DELFILE, *.i)
+ $(call CLEAN)
distclean: clean
- @rm -f nxfonts_convert_*bpp.c
- @rm -f nxfonts_bitmaps_*.c
+ $(call DELFILE, nxfonts_convert_*bpp.c)
+ $(call DELFILE, nxfonts_bitmaps_*.c)