From 97d96b897d86e437d4476145de6a3be340b205b5 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 16 Nov 2020 13:10:53 -0800 Subject: [PATCH] get right of a spurious "all" target --- etc/makefiles/arduino-cli.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/makefiles/arduino-cli.mk b/etc/makefiles/arduino-cli.mk index 8b86f7ea..41c882c5 100644 --- a/etc/makefiles/arduino-cli.mk +++ b/etc/makefiles/arduino-cli.mk @@ -32,10 +32,10 @@ endif .PHONY: configure-arduino-cli install-arduino-core-kaleidoscope install-arduino-core-avr .PHONY: all -.DEFAULT_GOAL := all +.DEFAULT_GOAL := non-goal -all: - @echo "Make all target doesn't do anything" +non-goal: + @echo "Make without a target doesn't do anything" @: ## Do not remove this line, otherwise `make all` will trigger the `%` rule too.