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