makedepend,在Unix系统上的工具程序,它能够建立C语言程序文件之间的依存关系(dependency)。通常使用于makefile之中,与make程序一起运作。
此条目没有列出任何参考或来源。 (2021年5月11日) |
历史
使用方式
makedepend
可以直接使用在一连串的程序文件中:
makedepend [options] foo.c bar.c ...
但是,它比较常见的使用方式,是应用于makefile中。通常会使用在depend
目标档上,像是make depend
会用makedepend
来处理在项目中所有的代码文件。以下是一个示例:
SRCS = file1.c file2.c ... CFLAGS = -O -DHACK -I../foobar -xyz depend: makedepend -- $(CFLAGS) -- $(SRCS)
这是一篇与Unix相关的小作品。您可以通过编辑或修订扩充其内容。 |
Wikiwand in your browser!
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.