实例一

1、分析源文件代码依赖关系

mian.c

#include "test1.h"
#include "test2.h"
#include <stdio.h>
int main()
{
test1_func("hello test1!");
test2_func("hello test2!");
return ;
}

这里可以看出 main.o 文件的生成需要 main.c , test1.h , test2.h

test1.h

#ifndef _TEST_1_H
#define _TEST_1_H
void test1_func(char *str);
#endif

test1.h 里面有 test1.c 里面函数的声明

test2.h

fndef _TEST_2_H
#define _TEST_2_H
void test2_func(char *str);
#endif

test2.h 里面有 test2.c 里面函数的声明

test1.c

#include "test1.h"
#include <stdio.h> void test1_func(char *str)
{
printf("This is test1 : %s ",str);
}

生成 test1.o 文件,需要 test1.c , test1.h

test2.c

#include "test2.h"
#include <stdio.h> void test2_func(char *str)
{
printf("This is test2 : %s",str);
}

生成 test2.o 文件,需要 test2.c , test2.h

2、直接编写Makefile文件

[root@localhost MakefileExample]# vim Makefile
#Makefile
main:main.o test1.o test2.o
gcc -o main main.o test1.o test2.o
main.o:main.c test1.h test2.h
gcc -c main.c
test1.o:test1.c test1.h
gcc -c test1.c
test2.o:test2.c test2.h
gcc -c test2.c
.PHONY:clean
clean:
rm -f *.o main

make 编译

清除生成的 .o 文件

3、运用变量编写Makefile文件

#Makefile
OBJ=main.o test1.o test2.o
CC =gcc
test:$(OBJ)
$(CC) -o $@ $^
main.o:main.c test1.h test2.h
$(CC) -c $<
test1.o:test1.c test1.h
$(CC) -c $<
test2.o:test2.c test2.h
$(CC) -c $<
.PHONY:clean
clean:
rm -f $(OBJ) test

make编译

实例二

1、分析源文件代码依赖关系

hello.c

void showhello()  {
hello();
}

生成 hello.o 文件需要依赖 hello.c , hello.h

hello.h

/*hello.h*/
#ifndef HELLO_H
#define HELLO_H void hello() {
star1();
printf("hello,my friends\n");
} #endif

hello.h 里面有 star() 函数的函数体

star.c

#include "starfun.h"
#include "hello.h"
#include <stdio.h>
int main() {
star1();
star2();
showhello();
return ;
}

生成 star.o 文件,需要依赖 star.c , hello.h , starfun.h 文件

starfun.h

/*****starfun.h*****/
#ifndef STARFUN_H
#define STARFUN_H #define NUM 4
#define NUMBER 3 int star1() {
int i,j,k;
for(k=;k<=NUM;++k) {
for(i=;i<=(NUM-k);++i)
printf(" ");
for(j=;j<=(*k-);++j)
printf("*");
printf("\n");
}
return ;
}
int star2() {
int i,j,k;
for(k=NUMBER;k>=;--k) {
for(i=;i<=(NUMBER-k+);++i)
printf(" ");
for(j=;j<=(*k-);++j)
printf("*");
printf("\n");
}
return ;
} #endif

2、直接编写Makefile文件

[root@localhost test_2]# vim Makefile
#cjj
main:hello.o star.o
gcc -o main hello.o star.o
hello.o:hello.c hello.h
gcc -c hello.c
star.o:star.c hello.h starfun.h
gcc -c star.c
.PHONY:clean
clean:
rm -f *.o main

make 编译(会出现警告,不影响运行)

运行生成的文件

[root@localhost test_2]# ./main 

删除 .o 文件和 main 文件

3、运用变量编写Makefile文件

#cjj
OBJ=hello.o star.o
CC =gcc
STAR=star.c hello.h starfun.h main:$(OBJ)
$(CC) -o $@ $^
hello.o:hello.c hello.h
$(CC) -c $<
star.o:$(STAR)
$(CC) -c star.c
.PHONY:clean
clean:
rm -f $(OBJ) main

编译并运行

根据给定文件编写Makefile文件 两种方法编译的更多相关文章

  1. Windows文件自删除的两种方法

    可执行模块的自删除技术已经被讨论的很多, 有很多极富创意的思路和想法被提出, 但有些似是而非的方案往往使人误入歧途. 举个例子来说, 很多文章认为下面的一小段代码可以实现自删除:void main(v ...

  2. C#实现Web文件上传的两种方法

    1. C#实现Web文件的上传 在Web编程中,我们常需要把一些本地文件上传到Web服务器上,上传后,用户可以通过浏览器方便地浏览这些文件,应用十分广泛. 那么使用C#如何实现文件上传的功能呢?下面笔 ...

  3. SpringBoot从入门到精通十一(SpringBoot文件上传的两种方法)

    前言 在企业级项目开发过程中,上传文件是最常用到的功能.SpringBoot集成了SpringMVC,当然上传文件的方式跟SpringMVC没有什么出入. 本章目标 使用SpringBoot项目完成单 ...

  4. vba判断文件是否存在的两种方法(转)

    方法1. 用VBA自带的dir()判断,代码如下: 在 Microsoft Windows 中, Dir 支持多字符 (*)和单字符 (?) 的通配符来指定多重文件 Function IsFileEx ...

  5. VC++实现获取文件占用空间大小的两种方法(非文件大小)

    // GetFileSpaceSize.cpp : Defines the entry point for the console application. // /***************** ...

  6. 清除SQLServer日志的两种方法

    日志文件满而造成SQL数据库无法写入文件时,可用两种方法:一种方法:清空日志.1.打开查询分析器,输入命令DUMP TRANSACTION 数据库名 WITH NO_LOG2.再打开企业管理器--右键 ...

  7. 教会你如何编写makefile文件

    最近一直在学习makefile是如何编写的.当我们写的程序文件比较少的时候,敲入gcc /g++,当你在大型工程中,在一个个编译文件的话,你可能就会很郁闷.linux有一个自带的make命令,它让你的 ...

  8. 如何编写makefile文件

    最近一直在学习makefile是如何编写的.       当我们写的程序文件比较少的时候,敲入gcc /g++,当你在大型工程中,在一个个编译文件的话,你可能就会很郁闷.linux有一个自带的make ...

  9. 转:教会你如何编写makefile文件

    最近一直在学习makefile是如何编写的.当我们写的程序文件比较少的时候,敲入gcc /g++,当你在大型工程中,在一个个编译文件的话,你可能就会很郁闷.linux有一个自带的make命令,它让你的 ...

随机推荐

  1. pickle & cPickle ValueError: unsupported pickle protocol: 3

    pickle and cPickle pickle和cPickle是python对象的转储文件,保存的是python对象 他们分别是python2和python3的对应部分,建议引入的时候采用以下方法 ...

  2. Python学习札记(二十六) 函数式编程7 修饰器

    修饰器 NOTE 1.函数对象有一个__name__属性,可以拿到函数的名字: #!/usr/bin/env python3 def now(): print('2017/2/19') def mai ...

  3. POJ 2486 Apple Tree(树形dp)

    http://poj.org/problem?id=2486 题意: 有n个点,每个点有一个权值,从1出发,走k步,最多能获得多少权值.(每个点只能获得一次) 思路: 从1点开始,往下dfs,对于每个 ...

  4. UVa 1658 海军上将(最小费用最大流)

    https://vjudge.net/problem/UVA-1658 题意: 给出一个v个点e条边的有向加权图,求1~v的两条不相交(除了起点和终点外公共点)的路径,使得权和最小. 思路:把2到v- ...

  5. python 获取列表的键值对

    nums = [, , , , ] for num_index, num_val in enumerate(nums): print(num_index, num_val)

  6. Flutter基础Widget之按钮(RaisedButton、FlatButton、OutlineButton,IconButton)

    Flutter中给我们预先定义好了一些按钮控件给我们用,常用的按钮如下 RaisedButton :凸起的按钮,其实就是Android中的Material Design风格的Button ,继承自Ma ...

  7. 原生js实现ajax的文件异步提交功能、图片预览功能.实例

    采用html5使得选择图片改变时,预览框中图片随之改变.input文件选择框美化.原生js完成文件异步提交 效果图: 代码如下,可直接复制并保存为html文件打开查看效果 <html> & ...

  8. ExecutorService对象的shutdown()和shutdownNow()的区别

    可以关闭 ExecutorService,这将导致其拒绝新任务.提供两个方法来关闭 ExecutorService. shutdown() 方法在终止前允许执行以前提交的任务; shutdownNow ...

  9. [转载]c语言指针segmentation fault 指针常常错误的小地方

    http://www.cnblogs.com/qingjoin/archive/2012/03/20/2408944.html #include <stdio.h> ] = ] = ] = ...

  10. vscode golang插件下载

    此处是windows,linux操作类似 进行如下命令进行目录切换:cd %GOPATH%\src\github.com\golang我这里的GOPATH是在D:\go_project如果src目录下 ...