Makefile: Set the default goal to a target that prints what's going on.
This commit is contained in:
parent
1a95cce1a3
commit
cf867b2d43
5
Makefile
5
Makefile
|
@ -42,12 +42,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
ifeq ($(wildcard .config),)
|
ifeq ($(wildcard .config),)
|
||||||
.DEFAULT:
|
.DEFAULT default:
|
||||||
@echo "Nuttx has not been configured:"
|
@echo "Nuttx has not been configured:"
|
||||||
@echo " tools/configure.sh <target>"
|
@echo " tools/configure.sh <target>"
|
||||||
|
|
||||||
clean distclean:
|
|
||||||
@:
|
|
||||||
else
|
else
|
||||||
include .config
|
include .config
|
||||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||||
|
|
Loading…
Reference in New Issue