makefile编写规则

Posted ims-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了makefile编写规则相关的知识,希望对你有一定的参考价值。

cc = g++ -std=c++11
prom = calc
deps = FtTest.h
obj = FtTest.o newft.o 
LIBS = -lgtest_c11

$(prom): $(obj)
    $(cc) -o $(prom) $(obj)  $(LIBS)

%.o: %.c $(deps)
    $(cc) -c $< -o [email protected]

以上是关于makefile编写规则的主要内容,如果未能解决你的问题,请参考以下文章

makefile编写

makefile编写规则

9.Makefile隐含规则

9.Makefile隐含规则

Linux下makefile文件的编写问题!

Makefile.am 规则和实例详解