linux makefile链接动态库,Makefile常用万能模板(包括静态链接库、动态链接库、可执行文件)...

用makefile来编译工程,对很多朋友来说都是一件麻烦而痛苦的事情,这里我写了几个makefile,专门提供给那些曾经被makefile困扰的朋友,根据生成的目标文件不同,我将makefile分成了三份:生成可执行文件的makefile,生成静态链接库的makefile,生成动态链接库的makefile。

这些makefile都很简单,一般都是一看就会用,用法也很容易,只需要把它们拷贝到你的代码的同一目录下,然后就可以用make来生成目标文件了。

是不是真的有这么神奇?呵呵,你自己用用就知道了。

下面是三个makefile的源代码:

1、生成可执行文件的makefile

######################################

#

######################################

#source file

#源文件,自动找所有.c和.cpp文件,并将目标定义为同名.o文件

SOURCE := $(wildcard *.c) $(wildcard *.cpp)

OBJS := $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SOURCE)))

#target you can change test to what you want

#目标文件名,输入任意你想要的执行文件名

TARGET := test

#compile and lib parameter

#编译参数

CC := gcc

LIBS :=

LDFLAGS :=

DEFINES :=

INCLUDE := -I.

CFLAGS := -g -Wall -O3 $(DEFINES) $(INCLUDE)

CXXFLAGS:= $(CFLAGS) -DHAVE_CONFIG_H

#i think you should do anything here

#下面的基本上不需要做任何改动了

.PHONY : everything objs clean veryclean rebuild

everything : $(TARGET)

all : $(TARGET)

objs : $(OBJS)

rebuild: veryclean everything

clean :

rm -fr *.so

rm -fr *.o

veryclean : clean

rm -fr $(TARGET)

$(TARGET) : $(OBJS)

$(CC) $(CXXFLAGS) -o $@ $(OBJS) $(LDFLAGS) $(LIBS)

2、生成静态链接库的makefile

######################################

#

#

######################################

#target you can change test to what you want

#共享库文件名,lib*.a

TARGET := libtest.a

#compile and lib parameter

#编译参数

CC := gcc

AR = ar

RANLIB = ranlib

LIBS :=

LDFLAGS :=

DEFINES :=

INCLUDE := -I.

CFLAGS := -g -Wall -O3 $(DEFINES) $(INCLUDE)

CXXFLAGS:= $(CFLAGS) -DHAVE_CONFIG_H

#i think you should do anything here

#下面的基本上不需要做任何改动了

#source file

#源文件,自动找所有.c和.cpp文件,并将目标定义为同名.o文件

SOURCE := $(wildcard *.c) $(wildcard *.cpp)

OBJS := $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SOURCE)))

.PHONY : everything objs clean veryclean rebuild

everything : $(TARGET)

all : $(TARGET)

objs : $(OBJS)

rebuild: veryclean everything

clean :

rm -fr *.o

veryclean : clean

rm -fr $(TARGET)

$(TARGET) : $(OBJS)

$(AR) cru $(TARGET) $(OBJS)

$(RANLIB) $(TARGET)

3、生成动态链接库的makefile

######################################

#

#

######################################

#target you can change test to what you want

#共享库文件名,lib*.so

TARGET := libtest.so

#compile and lib parameter

#编译参数

CC := gcc

LIBS :=

LDFLAGS :=

DEFINES :=

INCLUDE := -I.

CFLAGS := -g -Wall -O3 $(DEFINES) $(INCLUDE)

CXXFLAGS:= $(CFLAGS) -DHAVE_CONFIG_H

SHARE := -fPIC -shared -o

#i think you should do anything here

#下面的基本上不需要做任何改动了

#source file

#源文件,自动找所有.c和.cpp文件,并将目标定义为同名.o文件

SOURCE := $(wildcard *.c) $(wildcard *.cpp)

OBJS := $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SOURCE)))

.PHONY : everything objs clean veryclean rebuild

everything : $(TARGET)

all : $(TARGET)

objs : $(OBJS)

rebuild: veryclean everything

clean :

rm -fr *.o

veryclean : clean

rm -fr $(TARGET)

$(TARGET) : $(OBJS)

$(CC) $(CXXFLAGS) $(SHARE) $@ $(OBJS) $(LDFLAGS) $(LIBS)

  • 2
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值