automake
What are Makefile.am and Makefile.in?
These two files are mostly seen in open source projects. What are they for, an开发者_开发百科d how do they work?Makefile.am is a programmer-defined file and is used by automake to generate the Makefi[详细]
2022-12-24 04:21 分类:问答How do I troubleshoot boost library/header inclusion via autoconf/automake?
I\'m new to autom4te, and I\'m trying to use autoconf/automake to build and link a C++ program on multiple architectures. Complicating the linking is the fact that the project requires boost (filesyst[详细]
2022-12-20 01:47 分类:问答Using pkg-config with autotools
I\'m learning about the autotools and made it through a hello world scenario and now wanted to try wrapping up some cppunit tests into a package and build it using the autotools.In order to build the[详细]
2022-12-19 01:40 分类:问答check automake/autoconf version in configure script
I\'m trying to edit a configure script that will execute this piece of code if it is above Automake version x.xx, and if it isn\'t, it executes a different piece of code.[详细]
2022-12-18 01:27 分类:问答Automake generating binaries to bin/ instead of in src/
I searched for the answer to this question but couldn\'t find any good. Maybe they\'re old and something has changed, so I ask again.[详细]
2022-12-17 23:10 分类:问答How would one setup autotools to build a project for separate architectures, concurrently, on multiple systems?
I\'ve got a C++ project which uses automake and autoconf. I\'m new to both of these. My home directory is network mounted -- the same on every server we have -- and I want to compile and run the proj[详细]
2022-12-17 05:04 分类:问答Automake and standard shared libraries
How can I force automake to create a standard shared library, instead of a libtoolized one? Normally, I\'d create the abc.so which is referenced with a full path and loaded into the main program. Is t[详细]
2022-12-16 21:42 分类:问答Undefined reference when compiling against libraries generated by Automake
I am having a pretty strange linking error in a project that uses automake. What I do seems pretty simple from the manual, so I really wonder what I can doing wrong ...[详细]
2022-12-15 19:52 分类:问答Is it possible to specify specific flags/define for DLL/SO build?
How can I specify some unique flags for DLL only builds. By default libtool adds -DDLL_EXPORT which is fine for most projects that follow GNU conventions, but if I work, for example, with Boost I may[详细]
2022-12-15 09:50 分类:问答GNU Autotools: How do you include source files in the 'make dist' tarball that are above the root source directory?
I\'ve got a Subversion project that uses Gnu Autotools (i.e., automake, autoconf, and libtool) to manage source code within a subfolder (called \'subpackage\').The subpackage references source files t[详细]
2022-12-13 06:13 分类:问答