Tagged Questions

Automake is a tool provided by GNU for the purpose of automating the generation of portable, configurable Makefiles. It works in close coordination with the GNU autotools project and requires autoconf.

learn more… | top users | synonyms

11
votes
3answers
242 views

Automake Variables to tidy up Makefile.am

I have a directory /src containing all of my source files, and /bin to store all binary after running make command. The directory is something like below: /BuildDirectory - - /src - - /bin - - ...
9
votes
8answers
536 views

Is it worth learning GNU Make?

I'm lately feeling the need to learn a build tool. I'm looking through StackOverflow for recommendations and Gnu Make gets barely mentioned. Instead I see Ant, Maven, CMake, Scon and many others. ...
8
votes
3answers
1k views

gnu autotools: Debug/Release targets?

I've been looking for this for a while: I'm currently converting a medium-size program to autotools, coming from an eclipse-based method (with makefiles) I'm always used to having a "debug" build, ...
8
votes
3answers
3k views

Directory structure for C++ library

I am working on a c++ library. Ultimately, I would like to make it publicly available for multiple platforms (linux/windows at least), along with some examples and python bindings. Work is progressing ...
6
votes
2answers
59 views

Autoconf/Automake: How to avoid passing the “check” option to AC_CONFIG_SUBDIRS

I'm using Autoconf to build my c++ project. It uses third party code which is also built with the help of Autoconf/Automake. So in my configure.ac I've got the following line: ...
5
votes
4answers
529 views

how to compile MPI and non-MPI version of the same program with automake?

I have a C++ code that can be compiled with MPI support depending on a certain preprocessor flag; missing the appropriate flag, the sources compile to a non-parallel version. I would like to setup ...
5
votes
2answers
2k views

Build 32bit on 64 bit Linux using a configure script

I'm using a 64bit system but want a set of 32bit binaries. What options must I pass to a configure script to generate a 32bit/x86 makefile?
5
votes
3answers
1k views

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. I have a directory structure as: my_project src bin I want ...
5
votes
1answer
604 views

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 ... My project has three folders ...
5
votes
3answers
709 views

How to avoid redefining VERSION, PACKAGE, etc

I haven't seen any questions relating to GNU autoconf/automake builds, but I'm hoping at least some of you out there are familiar with it. Here goes: I have a project (I'll call it myproject) that ...
4
votes
1answer
77 views

Custom command to generate object(.o) from binary file using autoconf

We have a project (c++) and it needs to include a binary file into shared library. This is done on windows by referencing the binary file from a resource file. On Linux it can be achieved by using ...
4
votes
2answers
184 views

automake+libtool+c++ = very bloated interface

First i have "include_HEADERS = 'my public headers'" and "libfoobar_la_SOURCES = 'private sources' 'private headers'". All is fine. It compile/install/link. But when i do "nm -C my_instaed_lib.so" i ...
4
votes
1answer
905 views

Autotools - tar This does not look like a tar archive

After running make distcheck I get the message that I have successfully built the package and is ready for distribution. If I untar the tar.gz with tar -zxvf hello-0.2.tar.gz it successfully extracts ...
4
votes
1answer
485 views

How to deal with source code file auto-generated in the build process

I'm trying to build a third party library which uses auto-generated source code files. In normal case, this kind of files is generated by gnu build tools. My question is How can I tell the Android ...
4
votes
4answers
830 views

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 ...
4
votes
2answers
865 views

Portably include GLib headers in autoconf/automake

I need to include the GLib headers for a project that is built with an autoconf-based system for portability. How can I safely import the GLib headers in a portable manner? I know about pkg-config, ...
4
votes
4answers
374 views

Refactoring build system to use Autotools

Over the past couple of days I have been reading into using autotools to build my project instead of the Makefiles I have pieced together over the past couple of months. Unfortunately I have not found ...
3
votes
2answers
105 views

automake and project dependencies

I have a project that I want to build using automake. The project consists of different components or modules, and there are inter module dependencies which require the project to be built in a ...
3
votes
1answer
125 views

speed up autoconf/configure of large project

I have a large autoconf/automake project, broken into components using AC_CONFIG_SUBDIRS. Is there any way to make autoconf/configure run faster? Perhaps doing subdirs in parallel, or caching ...
3
votes
1answer
79 views

'make distcheck' target and the info/dir file

I've added a new Info manual to my project, and added the requisite Makefile.am incantations: info_TEXINFOS = manual.texi Now when I run make distcheck, I get an error when verifying that make ...
3
votes
1answer
81 views

Locating $pkgdatadir defined by autotools from a script

My application uses autotools to install data files that are needed at runtime in $pkgdatadir. Part of the application is written in C, and the path to the data directory is set by the following ...
3
votes
3answers
237 views

C/C++: Add -I option automatically for indirect include using automake

I have two projects being built using Automake. Here are simplified versions of the Automake.amS: AM_CPPFLAGS = -I/some/include_path lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = foo.cpp ...
3
votes
3answers
643 views

autoconf/automake: conditional compilation based on presence of library?

I need to conditionally compile some code based on the presence of a library. Seems like this should be easy with autoconf/automake but I can't figure it out. For example, if there is a PNG library ...
3
votes
2answers
549 views

Print something after successfull make in Makefile.am

I am new to autotools and have managed to create a, for the moment, satisfying configure.ac. Now I would like to specify somewhere (configure.ac, Makefile.am, or wherever) that after a successfull ...
3
votes
1answer
189 views

Any difference between configure.ac and configure.in, and Makefile.am and Makefile.in?

I have seen both in different things I have configured. What I the difference? Is it notable to use only one? Or does it not matter which one to use?
3
votes
3answers
581 views

How to make automake less ugly?

I recently learned how to use automake, and I'm somewhat annoyed that my compile commands went from a bunch of: g++ -O2 -Wall -c fileName.cpp To a bunch of: depbase=`echo src/Unit.o | sed ...
3
votes
2answers
752 views

Writing a Makefile.am to invoke googletest unit tests

I am trying to add my first unit test to an existing Open Source project. Specifically, I added a new class, called audio_manager: src/audio/audio_manager.h src/audio/audio_manager.cc I created a ...
3
votes
4answers
2k views

Errors linking libresolv when building PHP 5.2.10 from source on OS X

To begin with, I would normally opt to use a pre-compiled binary of PHP, but am required to build from source for a specific business need. (I'm not the type that compiles open-source apps just for ...
3
votes
3answers
856 views

Why would autoconf/automake project link against installed library instead of local development library?

I'm creating a library libgdata that has some tests and non-installed programs. I am running into the problem that once I've installed the library once, the programs seem to be linking to the ...
3
votes
2answers
404 views

How to reconfigure a large program for GNU Autotools

I have a fairly large program written in C. It spans several files, and has a bit of retooling in order to attempt to compensate for platform issues. Specifically, I have header files for different ...
3
votes
2answers
2k views

Autotools : how to set global compilation flag

I have a project with several sources directories : src/A /B /C In each, the Makefile.am contains AM_CXXFLAGS = -fPIC -Wall -Wextra How can avoid repeating this in each source folder ? ...
3
votes
5answers
2k views

JNI and Java: ant calling make or make calling ant?

I'm just about to make my first trip into the world of JNI (Java Native Interface) to provide file system change notifications from platform specific C/C++ code to Java. That is unless someone suggest ...
2
votes
2answers
49 views

(Auto)make dependency across multiple makefiles

I am wondering if this is possible at all. Here is the situation: My project uses automake to build its targets. The top-directory contains the usual configure.ac and Makefile.am. Amongst others, the ...
2
votes
1answer
24 views

Automake: building shared module which is not to be installed

How to tell Automake to build a dynamic module which is not to be installed? pkglib_LTLIBRARIES = mywrapper.la mywrapper_la_LDFLAGS = -no-undefined -module -avoid-version causes mywrapper.so to be ...
2
votes
1answer
40 views

Specifying which Makefiles to build using automake

I am forced to learn some things about autotools for my job, and I really don't know what I'm doing. Our project is often distributed using rpms, and we want to remove our test code from our rpm ...
2
votes
0answers
21 views

Are there any automake m4 macros for flymake mode?

EmacsWiki (in http://www.emacswiki.org/emacs/FlyMake) has a recommendation to create a flymake.mk file and include it in every Makefile if you are using Automake, but this doesn't seem very... ...
2
votes
1answer
50 views

Expansion in Make variables

I have two variables in my Makefile: archs = i386 x86_64 tarball = foo-i386 foo-x86_64 As you see my second variable is actually based on the first one. But i want something like a regex expansion ...
2
votes
1answer
61 views

Autoconf subdirectories with subpackages depending on each other?

I've got a large project on my hand (master) that is split into several components (liba, b, c, d) to ease building and maintenance. When building the whole package, all of the subcomponents must be ...
2
votes
3answers
74 views

Can I build Perl modules with ExtUtils::MakeMaker-based build system “out of tree”?

Instead of adding or modifying files in the directory where the sources of a Perl module are unpacked, I would like to build everything in a separate directory. Is this easily achievable with a fairly ...
2
votes
1answer
97 views

selectively enabling a test program if Python is available - automake

I've got a program that's written in C, built using automake/autoconf, and has two test suites. One is a unit test suite also written in C; the other is end-to-end and is (currently) written in ...
2
votes
1answer
158 views

Automake rebuild source file if Makefile changes

When using an autoconf/automake build system if the compiler flags or other variables in a Makefile.am (or even higher level like configure.ac) change, the C++ source files associated with that ...
2
votes
1answer
170 views

How to get automake, libtool, and rpmbuild to work together

I'm trying to create an RPM of my package, which is built using automake and libtool, and I've encountered a problem: rpmbuild aborts upon discovering that the installed programs of the package ...
2
votes
3answers
254 views

Install data directory tree with massive number of files using automake

I have a data directory which I would like automake to generate install and uninstall targets for. Essentially, I just want to copy this directory verbatim to the DATA directory, Normally, I might ...
2
votes
2answers
80 views

Finding custom includes directories with autoconf

I'm trying to compile a program which uses the festival library. Basically, the requirements are that you include the festival and estools header directories in the include path, and you include both ...
2
votes
1answer
400 views

Explanation sought: libtool, automake, shared libraries (and Fortran)

The problem I had is solved. I'm posting this to solicit an explanation as to why the solution actually works. I've gotten great feedback here before. I have a legacy code base that used a very ...
2
votes
1answer
134 views

How to install gettext mo files into /usr/share/locale using Automake?

For man pages, I can install them by: man_MANS = \ program.1 \ program.5 Is there similar approach to install gettext mo files? like, locale_MESSAGES = \ program.mo.en_US \ ...
2
votes
2answers
224 views

Automake: dependency on build result

I use automake and autoconf. In the subdirectory src/ the Makefile.am contains bin_PROGRAMS = hello hello_SOURCES = hello.c After building hello I want to run a tool (some analyzer/optimizer ...
2
votes
1answer
67 views

Autofoo test for maximum version of Python

I'm trying to get autofoo to test for a maximum version of Python rather than a minimum. Example: AC_REQUIRE([AM_PATH_PYTHON([2.7])]) ... will test for Python >= 2.7, and will probably turn up ...
2
votes
2answers
156 views

How do I tell autoconf not to probe for fortran, C++ etc. when my package is built only in C?

This has been bugging me for years, but I've just been ignoring it, like I suspect everyone else does. AM_INIT_AUTOMAKE([dist-bzip2]) AC_PROG_CC AC_PROG_LIBTOOL AC_C_INLINE AM_PROG_CC_C_O With the ...
2
votes
1answer
187 views

How to specify multiple sourcefiles in automake at once

Is there any way around having to specify every sourcefile I create manually in my automake scripts? I've tried several ways of specifying sourcefiles using find -name *.cc or the like. I've also ...

1 2 3 4 5