Si vous définissez une cible vide
Nothing:
le make
la commande le dira
$ make
make: Nothing to be done for 'Nothing'.
Ensuite, ajoutez simplement une cible .SILENT
# A makefile
Nothing:
all: twist again
.SILENT:
Voir le lien GNU Rendre silencieux par défaut
Cela devrait le faire (c'est-à-dire rien):
null:
@:
Essayez le makefile complet suivant :
all :
.PHONY : all