码迷,mamicode.com
首页 > 系统相关 > 详细

linux 一个超简单的makefile

时间:2017-04-25 23:35:16      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:++   style   log   main   自动化   文件名   g++   变量   pthread   

makefile 自动化变量:
 
$@ : 规则的目标文件名
 例如:main:main.o test.o
                   g++ -Wall -g  main.o test.o -o main 
 可以写成:
           main:main.o test.o
                   g++ -Wall -g  main.o test.o -o $@ 
 
$< : 规则的第一个依赖文件名
  例如:main.o: main.cpp 
                   g++ -Wall -g -c main.cpp -o main.o
  可以写成:
             main.o: main.cpp 
                   g++ -Wall -g -c $< -o main.o
 
$^ : 规则的所有依赖文件列表。
  例如:test.o:test.cpp test.h
                    g++ -Wall -g -c test.cpp test.h -o test.o
  可以写成:
             test.o:test.cpp test.h
                    g++ -Wall -g -c $^ -o test.o
 
 //程序文件包括main.cpp test.cpp test.h
  .PHONY:clean
  XX=g++
  exe=dididididididididi
  obj=main.o test.o
  $(exe):$(obj)
          $(XX) -pthread -Wall -g -o $(exe) $(obj)
  main.o:main.cpp test.h
          $(XX) -c main.cpp -o main.o
  test.o:test.cpp test.h
         $(XX) -c test.cpp -o test.o
 clean:
         rm -f *.o $(exe)

 

 

linux 一个超简单的makefile

标签:++   style   log   main   自动化   文件名   g++   变量   pthread   

原文地址:http://www.cnblogs.com/Ph-one/p/6764916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!