文件内容
[kou@localhost makefile]$ cat 1.c
#include "3.h"
int main()
{key_t key = ftok(".",1);printf("%d\n",add(1,2));return 0;
}[kou@localhost makefile]$ cat 2.c
#include "3.h"
int add(int a, int b)
{return a + b;
}
[kou@localhost makefile]$ cat 3.h
#pragma once
#include<stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>int add(int a,int b);
正常情况编译
Makefile文件
all:1.o 2.ogcc 1.o 2.o -o main
1.o:1.cgcc -c 1.c -o 1.o
2.o:2.cgcc -c 2.c -o 2.o
.PHONY:clean
clean:rm -rf *.o
makfile编写
gcc hello.c -o hello -I/home/hello/include -L/home/hello/lib -lworld
- -I /home/hello/include,表示将/home/hello/include目录作为第一个寻找头文件的目录,寻找的顺序是:/home/hello/include–>/usr/include–>/usr/local/include找不到的话查找默认目录
-L /home/hello/lib,表示将/home/hello/lib目录作为第一个寻找库文件的目录, 寻找的顺序是:/home/hello/lib–>/lib–>/usr/lib–>/usr/local/lib
-l word , 表示**寻找动态链接库文件**libword.so(也就是文件名去掉前缀和后缀所代表的库文件)
多文件gdb
每一个gcc 后面都要-g
all:1.o 2.ogcc -g -o all 1.o 2.o
1.o:1.cgcc -c 1.c -o 1.o -g
2.o:2.cgcc -c 2.c -o 2.o -g
clean:rm -rf *orm -rf output.crm -f all