• make&Makefile


    一、 什么是make&Makefile ?

    ①make 是一条命令,makefile是一个文件,配合使用,通过依赖关系和依赖方法达到我们形成可执行程序的目的

    ②makefile好处就是可以进行 自动化编译 ,极大的提高软件开发的效率,一旦写好,只需要一个 make 命令,整个工程即可以完全自动编译
    ③make 是一个命令工具,是一个解释 makefile 中指令的命令工具

    二、  实例代码

    0x01 Makefile的编辑

    1. [wh@localhost lesson7]$ touch test.c
    2. [wh@localhost lesson7]$ touch Makefile //Makefile建议开头大写
    3. [wh@localhost lesson7]$ vim test.c
    4. [wh@localhost lesson7]$ vim Makefile
    5. [wh@localhost lesson7]$ make
    6. gcc test.c -o test -std=c99
    7. [wh@localhost lesson7]$ ll
    8. total 20
    9. -rw-rw-r--. 1 wh wh 41 Oct 5 05:54 Makefile
    10. -rwxrwxr-x. 1 wh wh 8512 Oct 5 05:54 test
    11. -rw-rw-r--. 1 wh wh 73 Oct 5 05:54 test.c
    12. [wh@localhost lesson7]$ ./test
    13. hello world
    14. [wh@localhost lesson7]$ cat Makefile
    15. test:test.c //test的形成依赖于test.c,也可以说目标文件依赖于依赖文件
    16. gcc test.c -o test -std=c99 //依赖方法

    上述代码是对一个项目的形成,当然我们也要对其进行清理:

    1. [wh@localhost lesson7]$ cat Makefile
    2. test:test.c
    3. gcc test.c -o test -std=c99
    4. .PHONY:clean
    5. clean:
    6. rm -f test

    .PHONY是对clean的一个修饰,可以说clean是一个伪目标,而clean只有依赖方法,没有依赖关系,并且目标可执行程序如果没有修改,不需要重复执行,而伪目标可以多次执行

    0x02 上述代码中为什么只输入make就形成了可执行程序test,而必须输入make clean才能进行清理呢?

     make扫描makefile文件的时候,默认只会形成一个目标依赖关系,一般就是第一个

    当然也可以用$@代替目标文件,$^代替源文件

    1. 1 test:test.c
    2. 2 //gcc test.c -o test -std=c99
    3. 3 gcc -o $@ $^
    4. 4 .PHONY:clean
    5. 5 clean:
    6. 6 rm -f test

    上述的test:test.c依赖关系也可以细分为:

    1. 1 test:test.o
    2. 2 gcc test.o -o test
    3. 3 test.o:test.s
    4. 4 gcc -c test.s -o test.o
    5. 5 test.s:test.i
    6. 6 gcc -S test.i -o test.s
    7. 7 test.i:test.c
    8. 8 gcc -E test.c -o test.i
    9. 9 .PHONY:clean
    10. 10 clean:
    11. 11 rm -f test test.i test.s test.o

    0x03 printf在sleep之前,为什么先进行6s之后,printf才输出呢?难道是sleep先于printf运行吗?

    当然不是,是因为printf已经执行,但是数据没有被立即刷新到显示器当中
    ①没有\n,字符串会暂时保存起来,保存在用户C语言级别的缓冲区中
    ②显示器设备刷新策略就是行刷新,遇到\n即进行刷新
    ③如果想要立马刷新,则可以使用fflush(stdout);因为printf打印向stdout打印,则刷新即是向stdout刷新

    C程序,默认会打开三个流:

    stdin对应键盘,stdout对应显示器,stderr对应显示器
    因为程序的运行需要数据的输入,结果的输出以及错误的输出

    三、Linux 第一个小程序 --进度条

    0x01 初步学习

    1. 1 #include<stdio.h>
    2. 2 #include<unistd.h>
    3. 3
    4. 4 int main()
    5. 5 {
    6. 6 int count = 10;
    7. 7 while(count)
    8. 8 {
    9. 9 printf("%d\r",count);
    10. 10 fflush(stdout);
    11. 11 count--;
    12. 12 sleep(1);
    13. 13 }
    14. 14 return 0;
    15. 15 }

    ① 此时,显示器中显示的是10,90,80,70,...,10,这是为什么呢?
    凡是从键盘读取的内容都是字符和显示到显示器上面的内容都是字符,比如pirntf("%d\n",234);每次显示的是字符2,字符3,字符4,每次%r,都是只重置到首字母,但是不换行,fflush刷新的都是一个字符
    ②那如何解决这个问题呢?
    可以预留一部分空间出来,printf("%2d\r");留出来俩个空间

    0x02 进一步编写

    1. 1 #include<stdio.h>
    2. 2 #include<string.h>
    3. 3 #include<unistd.h>
    4. 4
    5. 5 int main()
    6. 6 {
    7. 7 #define NUM 100
    8. 8 char bar[NUM+1];//预留出'\0'的位置
    9. 9 memset(bar,'\0',sizeof(bar));
    10. 10
    11. 11 int i = 0;
    12. 12 while(i <= 100)
    13. 13 {
    14. 14 printf("%s\r",bar);
    15. 15 fflush(stdout);
    16. 16 bar[i] = '#';
    17. 17 i++;
    18. 18 sleep(1);
    19. 19 }
    20. 20 }

    0x03 增加[ ]和百分比和运行光标

    1. 1 #include<stdio.h>
    2. 2 #include<string.h>
    3. 3 #include<unistd.h>
    4. 4
    5. 5 int main()
    6. 6 {
    7. 7 #define NUM 100
    8. 8 char bar[NUM+1];
    9. 9 memset(bar,'\0',sizeof(bar));
    10. 10 const char* label = '|/-\\'
    11. 11 int i = 0;
    12. 12 while(i <= 100)
    13. 13 {
    14. 14 printf("[%-100s][%d%%] %c\r",bar,i,label[i%4]);
    15. //预留100个空间,%是转义字符,%%表示一个%
    16. //因为默认格式控制是右对齐,所以是从右往左打印,加'-'则是左对齐,从左往右打印
    17. 15 fflush(stdout);
    18. 16 bar[i] = '#';
    19. 17 i++;
    20. 18 usleep(50000);
    21. 19 }
    22. 20 printf("\n");
    23. 21 }

    0x04 运行成果

  • 相关阅读:
    Please master your time
    CSS绘制各种三角形
    Spark大数据分析与实战笔记(第三章 Spark RDD 弹性分布式数据集-04)
    开源AI漫画生成器-AI Comic Factory
    LeetCode739. Daily Temperatures——单调栈
    Unity 拷贝文本
    【JUC】并发需要了解的关键字volatile
    前后端分离开发,API接口这样写才简洁
    项目_游戏|外星人入侵
    获取Windows 10中的照片(旧版)下载
  • 原文地址:https://blog.csdn.net/qq_53010164/article/details/133587062