linux下 几个常用makefile模板,亲测可用

Posted dylancao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下 几个常用makefile模板,亲测可用相关的知识,希望对你有一定的参考价值。

一 生成动态链接库的模板:

  

技术分享图片
 1 #######################
 2 # Makefile
 3 #######################
 4 
 5 # compile and lib parameter
 6 CC      := g++
 7 LIBS    :=
 8 LDFLAGS :=
 9 DEFINES :=
10 INCLUDE := -I.
11 CFLAGS  :=
12 CXXFLAGS:=
13 
14 # link parameter
15 #LIB := libfunc.so
16 LIB := libfunc.a
17 
18 #link
19 $(LIB):func.o
20         $(CC) -shared -o -fPIC -o [email protected] $^
21 #compile
22 func.o:thread.c
23         $(CC) -c -fPIC $^ -o [email protected] 
24 
25 # clean
26 clean:
27         rm -fr *.o
View Code

 

 

二 编译可执行程序的模板:

技术分享图片
 1 ###########################################
 2 #Makefile for simple programs
 3 ###########################################
 4 INC=
 5 LIB= -lpthread
 6 
 7 CC=gcc
 8 CC_FLAG=-Wall
 9 
10 PRG=threadtest
11 #OBJ=thread.o CThreadPool.o CThread.o CWorkerThread.o threadpooltest.o
12 OBJ=thread.o
13 
14 $(PRG):$(OBJ)
15         $(CC) $(INC) -o [email protected] $(OBJ) $(LIB)
16         
17 .SUFFIXES: .c .o .cpp
18 .cpp.o:
19         $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o
20 
21 .PRONY:clean
22 clean:
23         @echo "Removing linked and compiled files......"
24         rm -f $(OBJ) $(PRG)
View Code

 

  测试结果:

1 参考文档: https://blog.csdn.net/lzx_bupt/article/details/7988192

2 代码所在路径: https://github.com/DyLanCao/iApply/tree/master/c_example/makefile

以上是关于linux下 几个常用makefile模板,亲测可用的主要内容,如果未能解决你的问题,请参考以下文章

uniapp 微信支付(亲测可支付)

uniapp 微信支付(亲测可支付)

MonkeyRunner之MonkeyRecorder录制回放脚本(亲测可正常运行)

Win10+YOLOv3完整安装过程(亲测可运行)

pycharm 3.4 亲测可使用到2019年2月的注册码,要用者从速

吴恩达实验(神经网络和深度学习)第一课第三周,代码和数据集,亲测可运行