使用 C 编程的 Makefile

发布于 2024-12-29 19:05:23 字数 270 浏览 0 评论 0原文

我对 C 和 UNIX 系统编程非常陌生。我知道要在基本 makefile 中放入什么(c 文件、依赖项和命令),但如何实际创建 makefile?它是一个文本文件吗? makefile 是什么样的扩展名?我使用的是 Mac OSX,这是我当前的错误,

$ make -f Makefile.txt
lint pr2.2.c
make: lint: Command not found
make: *** [pr2-lint] Error 127

提前致谢!

I am very new to C and UNIX systems programming. I know what to put in a basic makefile (the c files, the dependencies and the commands) but how do I actually create a makefile? Is it a text file? What kind of extension is a makefile? I am using Mac OSX, here is my current error

$ make -f Makefile.txt
lint pr2.2.c
make: lint: Command not found
make: *** [pr2-lint] Error 127

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

护你周全 2025-01-05 19:05:23

Makefile 是一个没有扩展名的文本文件,它指定何时如何编译和链接源文件的规则。

要创建 makefile,只需打开一个文本文件,并在修改后将其命名为 Makefile 即可。

this 这样的简单教程应该可以帮助您入门。

A Makefile is a text file with no extension and it specify's the rules of when and how to compile and link a source file.

To create a makefile just open a text file and name it as Makefile after you modify it.

A simple tutorial like this should get you started.

似狗非友 2025-01-05 19:05:23

makefile 是文本文件。它们通常没有扩展名。最常见的名称是 M 大写的 Makefile。您可以使用任何文本编辑器来创建一个。

makefiles are text files. They typically don't have an extension. The most common name is Makefile with a capital M. You can use any text editor to create one.

各自安好 2025-01-05 19:05:23

它是一个文本文件。它通常被命名为Makefile,没有扩展名。

It is a text file. It is usually named Makefile with no extension.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文