Makefile包括 目标文件、依赖文件、可执行命令三部分。
每部分的基本格式如下:
test: prog.o code.o
gcc -o test prog.o code.o
其中,第一行的test是目标文件; prog.o、code.o是依赖文件;
第二行的gcc -o test prog.o code.o是可执行命令。
整个Makefile文件都是这种格式。
以下是一些example:
-----------------------Makefile example 1----------------------------------
#this line is the comment for the Makefile
test: prog.o code.o
gcc prog.o code.o -o test
prog.o: prog.c prog.h code.h
gcc -c prog.c -o prog.o
code.o: code.c code.h
gcc -c code.c -o code.o
clean:
rm -f *.o
----------------------------------------------------------------------------------------------
-------------------------------example 2(包含变量)---------------------------------
#this line is the Makefile comment
OBJS = prog.o code.o
CC = gcc
CFLAGS = -Wall -g -O
test: ${OBJS}
${CC} ${CFLAGS} ${OBJS} -o test
prog.o: prog.c prog.h code.h
${CC} ${CFLAGS} -c prog.c -o prog.o
code.o: code.c code.h
${CC} ${CFLAGS} -c code.c -o code.o
clean:
rm -f *.o
------------------------------------------------------------------------------------------------
-------------------------------example 3(使用Makefile的隐含规则)---------------------------------
1,如果没有相应的编译命令,则使用隐含规则,所有的 ".c文件" 编译成与它名称相同的 ".o文件"。
2, 使用Makefile的自动变量。
#this line is the Makefile comment
OBJS = prog.o code.o
CC = gcc
test: ${OBJS}
${CC} -o $@ $^
prog.o: prog.c prog.h code.h #no exec command,and will generate the prog.o
code.o: code.c code.h #no exec command,and will generate the code.o
clean:
rm -f *.o
------------------------------------------------------------------------------------------------
-----------------------------------------------------以下为我测试过的实例文件内容 :-----------------------------------------------------
========================== Makefile ===============
#this line is the comment
CC = gcc
OBJS = my_str.o
CFLAGS = -Wall -g -O
program: my_main.c ${OBJS}
${CC} ${CFLAGS} $^ -o $@
my_str.o: my_str.c my_str.h
${CC} ${CFLAGS} -c my_str.c -o my_str.o
clean:
rm -f *.o
=======================================================================
==========================my_main.c=======================
#include <unistd.h>
#include <stdlib.h>
#include "my_str.h"
int
main(int argc, const char **argv)
{
if(my_cmp(argv[1], argv[2]) == 0)
write(1, "Equal !\n", sizeof("Equal !\n"));
else
write(1, "Not Equal !\n", sizeof("Not Equal !\n"));
exit(0);
}
===============================================================
========================my_str.c=============================
#include "my_str.h"
int
my_cmp(const char *str1, const char *str2)
{
if(!str1 || !str2)
return -1;
while(*str1 && *str2 && *str1 == *str2)
str1++, str2++;
return *str1 - *str2;
}
==================================================================
===================my_str.h============================================
#ifndef _MY_STR_H
#define _MY_STR_H
int my_cmp(const char *str1, const char *str2);
#endif
==================================================================
本文详细介绍Makefile的基础结构及其实战应用,包括基本语法、变量使用、隐含规则等,并通过具体示例展示如何构建和管理复杂的编译任务。
1102

被折叠的 条评论
为什么被折叠?



