【发布时间】:2017-06-14 20:35:14
【问题描述】:
在 Makefile 中是否需要 exec 关键字?
build-cache: clean-cache
@exec ./scripts/copy_packages.sh
./scripts/build_makefile.sh
docker build -t common/cache ./cache
我刚刚注意到有些行使用 exec 而其他行不使用。
【问题讨论】:
-
是GNU的
make吗?
标签: makefile