怎么编写一个makefile
时间: 2023-12-31 11:30:50 浏览: 132
编写Makefile
一个Makefile的基本格式如下:
```
target: dependencies
command1
command2
...
```
其中,`target` 是目标文件,`dependencies` 是依赖文件,`command` 是构建目标文件所需要执行的命令。
例如,编译一个名为 `hello` 的程序,其源代码文件为 `hello.c`,则可以编写以下Makefile:
```
hello: hello.c
gcc -o hello hello.c
```
该Makefile中的`target`是`hello`,`dependencies`是`hello.c`,`command`是`gcc -o hello hello.c`。
在命令行界面中,进入Makefile所在目录,输入命令 `make`,即可编译生成 `hello` 可执行文件。
阅读全文