-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Labels
Description
Many style guides suggest putting the .PHONY before the target.
This is also my preferred style.
# Remove all build artifacts and dependencies
.PHONY: clean
clean:
-rm -r buildThis, however, leads to a not very helpful help output
$ make help
.PHONY Remove all build artifacts and dependenciesI think mmake should ignore the .PHONY line.