说我想要一个非常简单的makefile,其中包含要链接的库(比如-lm
)
CFLAGS=-Wall -g
LIBS=-lm
如何将$(LIBS)
放到命令的右侧,而不必在makefile中手动构造命令并打破一堆隐式规则?
I couldn't find anything in the manual
是否可以简单地用自己写的一个替换隐式规则?
答案 0 :(得分:0)
在您提供的link之后,有LDFLAGS
:
LDFLAGS
Extra flags to give to compilers when they are supposed to invoke the linker, ‘ld’.