有关 linux c++ makefile 的使用方法,有需要的朋友可以看看。
一、c++编程中一般把文件分为三种,xx.h、xx.cpp、 main.cpp;linux环境下我们可以使用make工具进行编译,生成可执行文件之后便可以使用了。
这里写一个helloworld,分享一下,共同学习交流。
hello.h文件内容如下:
#ifndef hell_h
#define hell_h
class HelloWorld()
{
public :
HelloWorld();
~HelloWorld();
};
#endif
helloworld.cpp文件内容如下:
#include<iostream>
#include "hello.h"
using namespace std;
HelloWorld::HelloWorld()
{
cout<<"HelloWorld constr"
}
HelloWorld::~HelloWorld()
{
cout<<"析构"<<endl;
}
main.cpp文件内容如下:
#include<iostream>
#include "hello.h"
int main()
{
HelloWorld h;
return 0;
}
下面是 makefile文件的内容,也是最重要的。
然后在linux终端输入命令make makefile这可以得到dest文件;