Se definisci un target vuoto
Nothing:
il make
comando lo dirà
$ make
make: Nothing to be done for 'Nothing'.
Quindi, aggiungi semplicemente un target .SILENT
# A makefile
Nothing:
all: twist again
.SILENT:
Vedi link GNU Rendi silenzioso per impostazione predefinita
Questo dovrebbe farlo (cioè niente):
null:
@:
Prova il seguente makefile completo:
all :
.PHONY : all