Without further due and apologizing in case of RTFM is in order...
With this makefile:
aaa:
@echo "aaa"
bbb:
@echo "bbb"
.PHONY: aaa bbb
Shouldn't a "make bbb" output "bbb"?? I keep getting "aaa"
Can't a recipe be called directly? Reading the manual it seams like a direct call "make clean" can be made
Also I already checked that recipe indentation is a tab and not spaces
Should "make bbb" print "bbb"? Any idea why I'm getting "aaa"??
TIA