make linux 路径设置,linux中makefile设置路径的问题

本文转自:http://weihuachao1984.blog.163.com/blog/static/328712862009510105226885/

开始接触Makefile已经有好几个月了,最近想好好学习学习

但是一个简单的问题就卡壳了很简单的一个问题

|-- Makefile

|-- include

|   `-- hello.h

`-- src

|-- hello.cpp

`-- main.cp

首先是Makefile 文件和include文件夹还有src文件夹在同一个目录下

头文件hello.h在include目录下

源文件main.cpp和hello.cpp在src目录下

hello.h:

#ifndef _HELLO_H__

#define _HELLO_H__

void hello();

#endif

///

hello.cpp:

#include

#include"hello.h"

using namespace std;

void hello()

{

cout<

}

/

main.cpp:

#include

#include"hello.h"

using namespace std;

int main()

{

hello();

return 0;

}

/

Makfile:

你可能感兴趣的:(make,linux,路径设置)