Gcc Libtool:Makefile.am调用其他目录中的Makefile

Gcc Libtool:Makefile.am调用其他目录中的Makefile,gcc,compilation,autoconf,automake,libtool,Gcc,Compilation,Autoconf,Automake,Libtool,全部成交 我有一个用libtool构建的库。我有一个额外的模块,它是使用Makefile而不是libtool构建的。我希望能够将此库对象与libtool构建的库对象一起使用。由于我不想将附加模块与libtool集成,因此我只想在以下行中扩展libtool生成的Makefile: all: all-am (取而代之的是:) 谢谢 如何在Makefile.am中执行此操作?大家好,知道如何解决我的问题吗?我可以问一下为什么不libtool,即使没有其他Autotool的支持,也可以消除许多依赖于平

全部成交

我有一个用libtool构建的库。我有一个额外的模块,它是使用Makefile而不是libtool构建的。我希望能够将此库对象与libtool构建的库对象一起使用。由于我不想将附加模块与libtool集成,因此我只想在以下行中扩展libtool生成的Makefile:

all: all-am
(取而代之的是:)

谢谢


如何在Makefile.am中执行此操作?

大家好,知道如何解决我的问题吗?我可以问一下为什么不
libtool
,即使没有其他Autotool的支持,也可以消除许多依赖于平台的问题。
all: new-module all-am 

new-module: 
    -cd new-module-src && $(MAKE)