I'd like to declare a-test
, b-test
, c-test
as phony targets. Can I declare:
.PHONY : *-test
instead of
.PHONY : a-test b-test c-test
Also, how about declaring .PHONY : %-test
?
I'd like to declare a-test
, b-test
, c-test
as phony targets. Can I declare:
.PHONY : *-test
instead of
.PHONY : a-test b-test c-test
Also, how about declaring .PHONY : %-test
?