zoukankan      html  css  js  c++  java
  • linux: 几个常用makefile模板(动态库、静态库、可执行程序)

    1、编译动态库

        #############################################################   
        # Makefile for shared library.  
        # 编译动态链接库  
        #############################################################  
        #set your own environment option  
        CC = g++  
        CC_FLAG = -D_NOMNG -D_FILELINE  
          
        #set your inc and lib  
        INC =   
        LIB = -lpthread -L./ -lsvrtool  
          
        #make target lib and relevant obj   
        PRG = libsvrtool.so  
        OBJ = Log.o  
          
        #all target  
        all:$(PRG)  
          
        $(PRG):$(OBJ)  
            $(CC) -shared -o $@ $(OBJ) $(LIB)  
          
        .SUFFIXES: .c .o .cpp  
        .cpp.o:  
            $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o  
          
        .PRONY:clean  
        clean:  
            @echo "Removing linked and compiled files......;  
            rm -f $(OBJ) $(PRG)  
    View Code

    2、编译静态库

        #############################################################  
        # Makefile for static library.  
        # 编译静态链接库  
        #############################################################  
        #set your own environment option  
        CC = g++  
        CC_FLAG = -D_NOMNG -D_FILELINE  
          
        #static library use 'ar' command   
        AR = ar  
          
        #set your inc and lib  
        INC =   
        LIB = -lpthread -L./ -lsvrtool  
          
        #make target lib and relevant obj   
        PRG = libsvrtool.a  
        OBJ = Log.o  
          
        #all target  
        all:$(PRG)  
        $(PRG):$(OBJ)  
            ${AR} rv ${PRG} $?  
          
        .SUFFIXES: .c .o .cpp  
        .cpp.o:  
            $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o  
          
        .PRONY:clean  
        clean:  
            @echo "Removing linked and compiled files......"  
            rm -f $(OBJ) $(PRG)  
    View Code

    3、可执行程序

        ###########################################  
        #Makefile for simple programs  
        ###########################################  
        INC=  
        LIB= -lpthread  
          
        CC=CC  
        CC_FLAG=-Wall  
          
        PRG=threadpooltest  
        OBJ=CThreadManage.o CThreadPool.o CThread.o CWorkerThread.o threadpooltest.o  
          
        $(PRG):$(OBJ)  
            $(CC) $(INC) $(LIB) -o $@ $(OBJ)  
              
        .SUFFIXES: .c .o .cpp  
        .cpp.o:  
            $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o  
          
        .PRONY:clean  
        clean:  
            @echo "Removing linked and compiled files......"  
            rm -f $(OBJ) $(PRG)  
    View Code
  • 相关阅读:
    人脉是麻烦出来的
    oracle撤销表空间和回滚段
    linux虚拟机ip地址更改
    linux各个文件夹的用途
    Apache的配置文件http.conf参数含义详解
    账户管理_新建用户_用户组
    【刷题】BZOJ 3994 [SDOI2015]约数个数和
    【刷题】BZOJ 2301 [HAOI2011]Problem b
    【刷题】洛谷 P3455 [POI2007]ZAP-Queries
    【刷题】BZOJ 2820 YY的GCD
  • 原文地址:https://www.cnblogs.com/wind8961/p/5026468.html
Copyright © 2011-2022 走看看