码迷,mamicode.com
首页 > 其他好文 > 详细

makefile opencv的案例

时间:2018-12-14 17:26:32      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:+=   tar   make   target   .PHONY   .cpp   conf   lag   code   

 1 CXX = g++
 2 LIBS +=`pkg-config --libs opencv`
 3 INC +=`pkg-config --cflags opencv`
 4 CPPFLAGS += -g -std=c++11 -Wall
 5 
 6 SRCS = detect.cpp
 7 TARGET = detect
 8 OBJS = detect.o
 9 
10 $(TARGET):$(OBJS)
11     $(CXX) $(INC) $(CPPFLAGS) $(OBJS) -o $(TARGET) $(LIBS)
12 $(OBJS):%.o:%.cpp
13     $(CXX) $(INC) $(CPPFLAGS) -c $< -o $@
14 
15 .PHONY:clean
16 clean:
17     rm -r *.o $(TARGET)

 

makefile opencv的案例

标签:+=   tar   make   target   .PHONY   .cpp   conf   lag   code   

原文地址:https://www.cnblogs.com/buyizhiyou/p/10119721.html

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