linux: 几个常用makefile模板

不才,总结个人常用makefile模板,以备后用。

1、编译动态库

  1. #############################################################
  2. # Makefile for shared library.
  3. # 编译动态链接库
  4. #############################################################
  5. #set your own environment option
  6. CC = g++
  7. CC_FLAG = -D_NOMNG -D_FILELINE
  8. #set your inc and lib
  9. INC =
  10. LIB = -lpthread -L./ -lsvrtool
  11. #make target lib and relevant obj
  12. PRG = libsvrtool.so
  13. OBJ = Log.o
  14. #all target
  15. all:$(PRG)
  16. $(PRG):$(OBJ)
  17. $(CC) -shared -o $@ $(OBJ) $(LIB)
  18. .SUFFIXES: .c .o .cpp
  19. .cpp.o:
  20. $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o
  21. .PRONY:clean
  22. clean:
  23. @echo "Removing linked and compiled files......;
  24. rm -f $(OBJ) $(PRG)

2、编译静态库

  1. #############################################################
  2. # Makefile for static library.
  3. # 编译静态链接库
  4. #############################################################
  5. #set your own environment option
  6. CC = g++
  7. CC_FLAG = -D_NOMNG -D_FILELINE
  8. #static library use 'ar' command
  9. AR = ar
  10. #set your inc and lib
  11. INC =
  12. LIB = -lpthread -L./ -lsvrtool
  13. #make target lib and relevant obj
  14. PRG = libsvrtool.a
  15. OBJ = Log.o
  16. #all target
  17. all:$(PRG)
  18. $(PRG):$(OBJ)
  19. ${AR} rv ${PRG} $?
  20. .SUFFIXES: .c .o .cpp
  21. .cpp.o:
  22. $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o
  23. .PRONY:clean
  24. clean:
  25. @echo "Removing linked and compiled files......"
  26. rm -f $(OBJ) $(PRG)

3、可执行程序

  1. ###########################################
  2. #Makefile for simple programs
  3. ###########################################
  4. INC=
  5. LIB= -lpthread
  6. CC=CC
  7. CC_FLAG=-Wall
  8. PRG=threadpooltest
  9. OBJ=CThreadManage.o CThreadPool.o CThread.o CWorkerThread.o threadpooltest.o
  10. $(PRG):$(OBJ)
  11. $(CC) $(INC) $(LIB) -o $@ $(OBJ)
  12. .SUFFIXES: .c .o .cpp
  13. .cpp.o:
  14. $(CC) $(CC_FLAG) $(INC) -c $*.cpp -o $*.o
  15. .PRONY:clean
  16. clean:
  17. @echo "Removing linked and compiled files......"
  18. rm -f $(OBJ) $(PRG)

随机组合、举一反三会写出适合项目的makefile

上一篇:【附3】springboot源码解析 - 构建SpringApplication


下一篇:[NOSQL] Redis介绍