make 是一个应用程序
makefile 是一个描述文件
make 和 makefile 之间的关系
makefile 示例
Code
hello:
echo "hello makefile"
使用实例
make -f mf.txt hello
简化版1
make hello
简化版2
make
示例2
Code
hello :
echo "hello makefile"
test :
echo "test"
pwd
ls
使用实例:
make test
原文:https://www.cnblogs.com/bky-hbq/p/13186301.html