.PHONY: all all-before all-after clean clean-custom
all: all-before ../Flock.exe all-after
Since it's in .PHONY, it must be a Makefile keyword, but I don't know what it means or even does.
Since it's in .PHONY, it must be a Makefile keyword, but I don't know what it means or even does. |
|||
|
|
|
They are not keywords, they are referring to rules that are named Bad example:
|
|||||
|
|
I don't think that's a makefile keyword. It's probably the name of another target defined somewhere else in the makefile (but I can't be sure without more context of the file). |
|||
|
|