aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2012-08-18 20:37:53 -0700
committerpx4dev <px4@purgatory.org>2012-08-18 20:37:53 -0700
commit99515fc1ddcd57c6ab60c34c73b1deae549f357c (patch)
tree53b7fb85eb8bd116207a963676efec94cc47ba3c
parent9a56be6907e884d774418bfdf809d7d5ed0c3cad (diff)
downloadpx4-firmware-99515fc1ddcd57c6ab60c34c73b1deae549f357c.tar.gz
px4-firmware-99515fc1ddcd57c6ab60c34c73b1deae549f357c.tar.bz2
px4-firmware-99515fc1ddcd57c6ab60c34c73b1deae549f357c.zip
'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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3f34ef710..43a4333cf 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