linux项目构建工具——makefile

简介: 对于一些简单的makefile中的指令对的简介

@TOC

一、 makefile

在多文件中使用

1.创建文件

先创建三个文件 test.h   mytest.c   main.c 文件

[yzq@VM-8-8-centos mk]$  touch test.h mytets.c main.c
[yzq@VM-8-8-centos mk]$  ls
main.c  mytets.c  test.h

2. test.h ——函数的定义

使用 vim test.h 进入vim编辑器

这里要使用条件编译,`#ifndef TEST    #define TEST #endif

如果TEST 未被定义,则进入,#deifne定义 TEST endif 结束

这样做是为了防止头文件被包含

#ifndef TEST
#define TEST
#include<stdio.h>
void show();
#endif

定义函数show和c语言库

3. mytest.c——函数的实现

#include"test.h"
void show()
{
 int i=0; 
 for(i=;i<=10;i++)
 {
 printf("hello world\n");
 }
}

这里需要注意的是,我们引用的头文件是 test.h ,因为是自己创建的头文件,所以要用" "

4. main.c——函数的调用

#include"test.h"
int main()
{
 show();
 return 0;
}

这里只需调用show函数即可

5. 正常生成

[yzq@VM-8-8-centos mk]$  ls
main.c  mytest.c  mytets.c  test.h
[yzq@VM-8-8-centos mk]$  gcc mytest.c main.c -o test
[yzq@VM-8-8-centos mk]$  ls
main.c  mytest.c  mytets.c  test  test.h
[yzq@VM-8-8-centos mk]$  ./test
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world

正常生成是利用 gcc mytest.c main.c -o test

生成一个可执行程序 test

./ test产生 hello world

6. makefile的使用

首先使用 vim makefile (这里若是没有创建,则会自动创建一个文件)进入vim编辑器

test: mytest.c main.c
    gcc $^ -o $@
.PHONY:clean
    clean: rm -f test

输入ESC  :wq,退出 vim 编辑器

[yzq@VM-8-8-centos mk]$  make
gcc mytest.c main.c -o test
[yzq@VM-8-8-centos mk]$  ./test
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
hello world
[yzq@VM-8-8-centos mk]$  make clean
rm -f test

输入make 会自动生成gcc mytest.c main.c -o test ,并使用 ./test

输入 make clean 会自动生成 rm -f test ,可以自动删除目标文件test

1. 解析

test : mytest .c main.c

test 作为目标文件 ,冒号后的mytest.c 与main.c是依赖文件,这句话整体作为一个依赖关系

gcc $^ -o $@

$^代表目标文件

$@代表 依赖文件

等价于 gcc mytest.c main.c -o test

这句话整体作为一个依赖方法

特别注意:在gcc 前面加上 TAB

.PHONY:clean

  clean: rm -f test

.PHONY可以看作是makefile的关键字

clean ——伪目标

clean则是作为 伪目标存在

伪目标特点

伪目标特点:总是被执行

[yzq@VM-8-8-centos mk]$ make
gcc mytest.c main.c -o test
[yzq@VM-8-8-centos mk]$ make
make: `test' is up to date.
[yzq@VM-8-8-centos mk]$ make
make: `test' is up to date.

当多次使用make时,发现只有第一次可以运行,其他就会报错

[yzq@VM-8-8-centos mk]$ make clean
rm -f test
[yzq@VM-8-8-centos mk]$ make clean
rm -f test
[yzq@VM-8-8-centos mk]$ make clean
rm -f test
[yzq@VM-8-8-centos mk]$ make clean
rm -f test

当多次使用 make clean时,发现可以都可以正常运行。

使用 make clean 的原因

makefile是一个脚本,默认识别是从上往下,只会执行一个可执行,所以想要跳过项目的创建,就要加上对应的名字

目录
相关文章
|
27天前
|
关系型数据库 MySQL Linux
基于阿里云服务器Linux系统安装Docker完整图文教程(附部署开源项目)
基于阿里云服务器Linux系统安装Docker完整图文教程(附部署开源项目)
221 3
|
1月前
|
存储 数据可视化 Java
震惊!如何在linux下部署项目,部署/运行jar包 超详细保姆级教程!
如何在Linux系统下部署和运行Java项目jar包,包括传输文件到Linux、使用nohup命令运行jar包、查看端口状态、杀死进程和查看项目运行状态,以及如何解决“没有主清单属性”的错误。
449 1
震惊!如何在linux下部署项目,部署/运行jar包 超详细保姆级教程!
|
1月前
|
Ubuntu Linux 编译器
Linux/Ubuntu下使用VS Code配置C/C++项目环境调用OpenCV
通过以上步骤,您已经成功在Ubuntu系统下的VS Code中配置了C/C++项目环境,并能够调用OpenCV库进行开发。请确保每一步都按照您的系统实际情况进行适当调整。
281 3
|
1月前
|
算法 Java Linux
java制作海报五:java 后端整合 echarts 画出 折线图,项目放在linux上,echarts图上不显示中文,显示方框口口口
这篇文章介绍了如何在Java后端整合ECharts库来绘制折线图,并讨论了在Linux环境下ECharts图表中文显示问题。
39 1
|
1月前
|
Linux C++
Linux c/c++之makefile的基础使用
Linux下C/C++项目中makefile的基本使用,包括基础、进阶和高级用法,以及如何创建和使用makefile来自动化编译过程。
17 0
Linux c/c++之makefile的基础使用
|
1月前
|
前端开发 JavaScript 应用服务中间件
linux安装nginx和前端部署vue项目(实际测试react项目也可以)
本文是一篇详细的教程,介绍了如何在Linux系统上安装和配置nginx,以及如何将打包好的前端项目(如Vue或React)上传和部署到服务器上,包括了常见的错误处理方法。
310 0
linux安装nginx和前端部署vue项目(实际测试react项目也可以)
|
3月前
|
编译器 Linux 程序员
深度探索Linux操作系统 —— 构建工具链
深度探索Linux操作系统 —— 构建工具链
54 5
|
3月前
|
Linux Python
【Azure 应用服务】Azure App Service For Linux 上实现 Python Flask Web Socket 项目 Http/Https
【Azure 应用服务】Azure App Service For Linux 上实现 Python Flask Web Socket 项目 Http/Https
|
3月前
|
存储 关系型数据库 Linux
【Azure 应用服务】App Service For Linux 部署PHP Laravel 项目,如何修改首页路径为 wwwroot\public\index.php
【Azure 应用服务】App Service For Linux 部署PHP Laravel 项目,如何修改首页路径为 wwwroot\public\index.php
|
3月前
|
Linux C# C++
【Azure App Service For Container】创建ASP.NET Core Blazor项目并打包为Linux镜像发布到Azure应用服务
【Azure App Service For Container】创建ASP.NET Core Blazor项目并打包为Linux镜像发布到Azure应用服务