在Makefile中,可以使用以下方式來(lái)生成文件到指定位置:
target: source
cp source /path/to/destination
DEST_PATH = /path/to/destination
target: source
cp source $(DEST_PATH)
target: source
cp source $(DEST_PATH)
在命令行中執(zhí)行以下命令:
make DEST_PATH=/path/to/destination
以上是一些常用的方法,具體的實(shí)現(xiàn)方式可以根據(jù)實(shí)際需求進(jìn)行調(diào)整。