将一般依赖性与特定依赖性相结合

时间:2019-03-13 06:22:52

标签: makefile

是否可以放入一个makefile,两个文件都具有通用依赖性,例如:

%.o: %.c

以及特定的依存关系,例如:

Tree.o: Leaf.h
Rectangle.o: Point.h

最终结果应该是Tree.o同时依赖Tree.c和Leaf.h,而Rectangle.o同时依赖Rectangle.c和Point.h。

在这种情况下,我应该在哪里将编译命令精确地放置在一般依赖性或特定依赖性之下?

0 个答案:

没有答案