c++ - 不确定如何创建 MakeFIle

标签 c++ linux makefile

我在为包含 3 个 c++ 文件的项目创建 makefile 时遇到问题。

在包含文件(tree.h、helperMethods.h 和 main.cpp)的目录中,我首先使用命令 emacs makefile.make。然后,在 emacs 中,我将 makefile 编写为:

all: tree.h helperMethods.h main.cpp
[tab]g++ -std=c++0x -o project3 tree.h helperMethods.h main.cpp

我已经手动验证命令 g++ -std=c++0x -o project3 tree.h helperMethods.h main.cpp 确实编译了这三个文件并生成了一个可执行文件它应该。

在此之后,我保存 makefile,退出 emacs,并尝试运行它。

首先我使用了 make 但它返回了:

make: *** No targets specified and no makefile found.  Stop.

然后我尝试使用 make -f makefile.make 但这也不起作用并返回:

make: Nothing to be done for `all'.

在这一点上,我不确定为什么 makefile 没有正确构建。我对 makefile 没有太多经验;我很确定我的 makefile 正文中的命令是正确的,但是我在编写它时没有正确设置它。

如果完全相关,这里是 3 个文件:

树.h:

#ifndef tree_h
#define tree_h
#include <vector>

using namespace std;

template<class T>
class tree
{
public:
    tree<T> * parent;
    T element;
    vector<tree<T> > nodes;
    tree(const T& theElement)
    {
        element = theElement;
        nodes = vector<tree<T> >();
    }
    tree()
    {
        nodes = vector<tree<T> >();
    }
};

#endif

helperMethods.h

#ifndef helperMethods_h
#define helperMethods_h

#include "tree.h"

#include <tuple>
#include <string>
#include <iostream>
#include <vector>

using namespace std;

string printName(tuple<string, string, string> myTuple){
    string ret = "";
    if(std::get<0>(myTuple).length() > 0)
        ret += get<0>(myTuple) + " ";
    if(std::get<1>(myTuple).length() > 0 || std::get<2>(myTuple).length() > 0)
        ret += "(";
    if(std::get<1>(myTuple).length() > 0)
        ret += get<1>(myTuple);
    if(std::get<1>(myTuple).length() > 0 && std::get<2>(myTuple).length() > 0)
        ret += ", ";
    if(std::get<2>(myTuple).length() > 0)
        ret += get<2>(myTuple);
    if(std::get<1>(myTuple).length() > 0 || std::get<2>(myTuple).length() > 0)
        ret += ")";
    return ret;
}

bool tupleContain(tuple<string, string, string> myTuple, string myString){
    return (std::get<0>(myTuple).compare(myString) == 0) || (std::get<1>(myTuple).compare(myString) == 0);
}

void findElement(tree<tuple<string, string, string> > myTree, string myString, bool* found, vector<int> *ret)
{
    if(tupleContain(myTree.element, myString))
        *found = true;
    if(! * found)
    {
        for(int counter = 0; counter < (int)myTree.nodes.size(); counter ++)
        {
            if(!* found)
            {
                (*ret).push_back(counter);
                findElement(myTree.nodes.at(counter), myString, found, ret);
                if(!* found)
                    (*ret).pop_back();
            }
        }
    }
}

void getLineage(tree<tuple<string, string, string> > myTree, string myString){
    bool dummyForFound = false;
    bool * found = & dummyForFound;
    vector<int> lineage = vector<int>();
    vector<int> * pointer = & lineage;
    findElement(myTree, myString, found, &lineage);
    if(lineage.size() == 0)
    {
        cout << "Species not present" << endl;
        return;
    }
    vector<string> printString = vector<string>(lineage.size() + 1);
    tree<tuple<string, string, string> > * currentNodePointer = & myTree;
    for(int counter = 0; counter <= (int) lineage.size(); counter ++)
    {
        string currentLine = "";
        for(int counter2 = 0; counter2 < 2*((int) lineage.size() - counter); counter2 ++)
            currentLine += ">";
        if(counter != lineage.size())
            currentLine += " ";
        tree<tuple<string, string, string> > currentNode = * currentNodePointer;
        currentLine += printName(currentNode.element);
        if(counter < (int) lineage.size())
        {
            int foo = lineage.at(counter);
            tree<tuple<string, string, string> > currentNodeDummy = currentNode.nodes.at(foo);
            *currentNodePointer = currentNodeDummy;
        }
        printString.at(counter) = currentLine;
    }
    for(int counter = 0; counter < (int) printString.size(); counter ++)
        cout << printString.at(printString.size() - counter - 1) << endl;
    cout << endl;
}

void getCommonLineage(tree<tuple<string, string, string> > myTree , string name1, string name2)
{
    bool dummyForFound = false;
    bool * found = & dummyForFound;
    vector<int> lineage1 = vector<int>();
    vector<int> * pointer1 = & lineage1;
    vector<int> lineage2 = vector<int>();
    vector<int> * pointer2 = & lineage2;
    findElement(myTree, name1, found, pointer1);
    * found = false;
    findElement(myTree, name2, found, pointer2);
    if(lineage2.size() == 0 || lineage1.size() == 0)
    {
        cout << "At least one species not present." << endl;
        return;
    }
    bool stillSame = lineage1.at(0) == lineage2.at(0);
    cout << "Level[0] Common Ancestor: ROOT (ROOT, ROOT)" << endl;
    tree<tuple<string, string, string>> * lastSharedNode = & myTree;
    int finalCounter = 0;
    for(int counter = 0; counter < (int) min(lineage1.size(), lineage2.size()) && stillSame; counter ++)
    {
        tree<tuple<string, string, string> > dummyNode = * lastSharedNode;
        tree<tuple<string, string, string> > currentNode = dummyNode.nodes.at(lineage1.at(counter));
        *lastSharedNode = currentNode;
        if(counter < (int) min(lineage1.size(), lineage2.size()) - 1 && lineage1.at(counter + 1) != lineage2.at(counter + 1))
            stillSame = false;
        tuple<string, string, string> currentElement = currentNode.element;
        cout << "Level[" << counter + 1 << "] Commont Ancestor: " << printName(currentElement) << endl;
        finalCounter ++;
    }
    cout << endl;
    cout << "Ancestry unique to " << name1 << endl;
    tree<tuple<string, string, string> > savedNode = *lastSharedNode;
    tree<tuple<string, string, string> > * currentUnsharedNode = lastSharedNode;
    for(int counter = finalCounter; counter < (int) lineage1.size(); counter ++)
    {
        tree<tuple<string, string, string> > dummyNode = * currentUnsharedNode;
        tree<tuple<string, string, string> > currentNode = dummyNode.nodes.at(lineage1.at(counter));
        tuple<string, string, string> currentElement = currentNode.element;
        *currentUnsharedNode = currentNode;
        cout << "Level[" << counter + 1 << "] ";
        if(counter == lineage1.size() - 1)
            cout << "Species of interest: ";
        cout << printName(currentElement) << endl;
    }
    cout << endl;
    currentUnsharedNode = &savedNode;
    cout << "Ancestry unique to " << name2 << endl;
    for(int counter = finalCounter; counter < (int) lineage2.size(); counter ++)
    {
        tree<tuple<string, string, string> > dummyNode = * currentUnsharedNode;
        tree<tuple<string, string, string> > currentNode = dummyNode.nodes.at(lineage2.at(counter));
        tuple<string, string, string> currentElement = currentNode.element;
        *currentUnsharedNode = currentNode;
        cout << "Level[" << counter + 1 << "] ";
        if(counter == lineage2.size() - 1)
            cout << "Species of interest: ";
        cout << printName(currentElement) << endl;
    }
    cout << endl;
}
#endif

主要.cpp

#include "rapidxml.h"
#include "tree.h"
#include "helperMethods.h"

#include <string>
#include <string.h>
#include <stdio.h>
#include <iostream>
#include <vector>
#include <queue>
#include <tuple>

using namespace rapidxml;

int main(int argc, const char * arv[]){
    tuple<string, string, string> human ("Human", "Homo sapiens", "Species");
    tuple<string, string, string> apes ("Apes", "", "");
    tuple<string, string, string> dogs ("Dogs", "", "");
    tuple<string, string, string> root ("Root", "", "");
    tuple<string, string, string> bears ("Bears", "", "");
    tuple<string, string, string> cat ("Cat", "", "");
    tuple<string, string, string> horse ("Horse", "", "");
    tree<tuple<string, string, string> > myTree = tree<tuple<string, string, string>>(root);
    tree<tuple<string, string, string> > b = tree<tuple<string, string, string>>(dogs);
    tree<tuple<string, string, string> > c = tree<tuple<string, string, string>>(apes);
    tree<tuple<string, string, string> > d = tree<tuple<string, string, string>>(bears);
    tree<tuple<string, string, string> > e = tree<tuple<string, string, string>>(horse);
    tree<tuple<string, string, string> > f = tree<tuple<string, string, string>>(human);
    tree<tuple<string, string, string> > h = tree<tuple<string, string, string>>(cat);
    d.nodes.push_back(f);
    e.nodes.push_back(h);
    b.nodes.push_back(d);
    b.nodes.push_back(e);
    myTree.nodes.push_back(b);
    myTree.nodes.push_back(c);
    cout << printName(myTree.nodes.at(0).element);

    cout << "Welcome to my Tree of Life program!" << endl << endl;

    int choice = 1;
    while(choice == 1 || choice == 2) {
        cout << "Please choose from the following options:" << endl;
        cout << "   1.Get the lineage of a species" << endl;
        cout << "   2.Get the commmon lineage of two species" << endl;
        cout << "   3.Exit program" << endl << endl;
        cin >> choice;
        cout << endl;
        if(choice == 1)
        {
            cout << "Please enter the name of the species of interest:" << endl;
            string name;
            cin >> name;
            cout << endl;
            getLineage(myTree, name);
        }
        if(choice == 2)
        {
            string name1, name2;
            cout << "Please enter the name of the first species: " << endl;
            cin >> name1;
            cout << "Please enter the name of the second species: " << endl;
            cin >> name2;
            getCommonLineage(myTree, name1, name2);
        }
    }
    return 0;
}

最佳答案

Makefile 通常称为 Makefile(尽管 makefile 也可以),没有任何扩展名。如果您使用扩展(不推荐),您必须告诉make makefile 的名称。这既乏味又没有必要。

其次,你不需要在编译命令行中放入头文件,也不应该这样做。您在文件中使用 #include 行来指定头文件。所以你的编译命令可能是这样的:

g++ -std=c++0x -o project3 main.cpp

现在,在该命令中:

  • main.cpp

  • project3目标(即,将创建的文件。)

还有:

    编译工作需要
  • tree.hhelperMethods.h;编译依赖于这个文件。 (你知道这一点,但它们不会出现在命令行中,所以它并不明显。)此外,如果它们发生变化,你必须重新编译你的文件。

makefile 解释了如何从它的源代码创建一个目标,并且还列出了目标依赖项>。 (从技术上讲,make 不区分来源依赖项;它认为它们都是先决条件。但识别差异很方便。)

所以对于上面的命令,整个 make 配方可能看起来像这样:

project3: main.cpp tree.h helperMethods.h 
        g++ -std=c++0x -o project3 main.cpp

通常,我们不使用像main.cpp这样的文件名;相反,我们会将 project3 的主文件称为 project3.cpp,就像目标(输出)文件是 project3 一样。事实上,如果您这样做了,并且没有任何其他依赖项(头文件),您可以键入:

make project3

根本没有 makefilemake 会给出命令:

g++ -o project3 project3.cpp

在这种情况下,该命令将是错误的,因为它没有指定正确的 C++ 标准。但它通常有效,并且这是用相同的基本名称命名目标和源的一个很好的理由。

还有一件事:您的文件 tree.h 是一个只有 header 的库,这很好。但是 helperMethods.h 只是假装是一个头文件。这确实是一个完整的实现。你应该解决这个问题。

此外,将 using namespace std 放在头文件中确实不是一个好主意。头文件应该在所有需要它的地方明确使用 std:: 命名空间前缀。通常不建议在任何地方使用 using namespace std,但它在头文件中尤其糟糕,因为它会悄悄地污染任何包含头文件的文件的默认命名空间。这可能会导致非常隐蔽的错误或编译错误。

关于c++ - 不确定如何创建 MakeFIle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15458126/

相关文章:

c++ - 铿锵虫?命名空间模板类的 friend

c++ - 使用 RenderDrawRect 在屏幕上绘制矩形与使用 RenderDrawPoint 填充每个所需像素所需的时间相同吗?

build - 加快构建速度的提示

linux - 带有地址清理器的 Linux 和 Mac 的 Makefile

当文件位于不同的文件夹中时无法创建项目

c++ - 如何从一个 vector 中删除最小元素并添加到另一个 vector 中,而第一个元素变为空?

C++ 如何将 std::vector<Derived*> 类型的指针设置为 std::vector<Base*> 类型的对象

c - 用户定义信号 1

Linux 用户空间应用程序编译错误

linux - 如何避免在 perl 脚本中硬编码用户名/密码