In a Makefile, what is $(NOOP) typically used for?
I see in one particular Makefile, NOOP
is set to /bin/sh -c true
and it is used in many rules such as this one:
all: pure_all
$(NOECHO) $(NOOP)
How is this better/different than
all: pure_all