最佳答案
In a makefile, can I call a rule from another rule?
Similar to:
rule1:
echo "bye"
rule2:
date
rule3:
@echo "hello"
rule1