I have installed opencv 2.4.2 on ubuntu 12.04.I want to know how do i compile an opencv program written in c++ in ubuntu?Also,what are the benefits of using a 'make file'?And how can i compile using make-file?
|
A makefile is a simple way of compiling a project without having to specify the compilation and linking instructions each time. It is constructed as a series of rules in the format:
where the rule must be prefixed with a tab. For instance if you had a project which consisted of 2 source files, main.cpp and functions.cpp both of which used opencv code your makefile might consist of something like this:
where main.cpp is just your main function in which you make several calls to functions defined inside functions.cpp. The instruction To compile using a makefile you simply naviage to the directory where you have saved your source code, save the makefile as 'Makefile' and build with the command |
|||
|
|