From 99515fc1ddcd57c6ab60c34c73b1deae549f357c Mon Sep 17 00:00:00 2001 From: px4dev Date: Sat, 18 Aug 2012 20:37:53 -0700 Subject: [PATCH] 'make clean' at the top level should 'distclean' in NuttX, as it's not obvious otherwise how to get NuttX to clean out its dependencies and app configuration. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f34ef7104..43a4333cf1 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ endif # .PHONY: clean clean: - @make -C $(NUTTX_SRC) -r $(MQUIET) clean + @make -C $(NUTTX_SRC) -r $(MQUIET) distclean @make -C $(ROMFS_SRC) -r $(MQUIET) clean .PHONY: distclean