I know we can set up commands such as all, clean, install
etc in makefile
and use .PHONY
to tell make they're not associated with files.
But I was wondering - when creating make and makefile - was this kind of use (to run such commands) combined with .PHONY
designed for that purpose? Or maybe .PHONY
was added later to easily extend make to support those kind of commands?
I also read this but there wasn't anything else there except the regular known usage.
Thanks!