gpt4 book ai didi

c - 如何使用 Makefile 设置输入文件? (C)

转载 作者:行者123 更新时间:2023-11-30 20:10:02 26 4
gpt4 key购买 nike

如果我有源代码文件main.clibrary.clibrary.h等,我将如何设置输入文本文件充当控制台命令,例如 main input1.txt input2.txt?这可以完成还是必须在编译后完成?

最佳答案

program: main.c library.c  
gcc -o program $<

.PHONY: run
run: program input1.txt input2.txt.
./program input1.txt input2.txt

基本上,您将它们视为运行程序的依赖项。在上面的示例中,make run 将运行程序并在需要时对其进行编译。

关于c - 如何使用 Makefile 设置输入文件? (C),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47645251/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com