Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试开始构建自己的 make 文件,但是在让我的 Mac 使用它们时遇到了一些麻烦。我可以发出命令make -f makefile.txt,它可以很好地编译我的项目;但是,仅使用make会产生以下结果:
make -f makefile.txt
make
make: *** No targets specified and no makefile found. Stop.
我的生成文件如下所示:
all: g++ main.c -o hello
难道我做错了什么?
您不恰当地命名 Makefile。它应该简单命名Makefile(没有扩展名),而不是makefile.txt.
Makefile
makefile.txt