Si define un objetivo vacío
Nothing:
el make
el comando dirá
$ make
make: Nothing to be done for 'Nothing'.
Luego, simplemente agregue un objetivo .SILENT
# A makefile
Nothing:
all: twist again
.SILENT:
Ver enlace GNU Hacer silencioso por defecto
Esto debería hacerlo (es decir, nada):
null:
@:
Pruebe el siguiente archivo MAKE completo:
all :
.PHONY : all