Top "Automake" questions

Automake is a tool provided by GNU for the purpose of automating the generation of portable, configurable Makefiles.

how to set include paths with autotools

I'm working on a C++ project that uses autoconf & automake, and I'm struggling to correctly set up the include …

autotools autoconf automake include-path
Default compiler flags with Autotools

I want to know how to set default compiler/linker/etc. flags if I use Autoconf/Automake combo. For example, …

makefile autoconf automake
automake error: no proper invocation of AM_INIT_AUTOMAKE was found

I am new in autotools, and following this tutorial. but I could not solve this errors, $ automake configure.ac: error: …

autotools automake
How to create a shared library (.so) in an automake script?

Given some source file test.cpp I would like to create a shared library libtest.so . I am trying to …

c++ shared-libraries autotools automake
Automake error './ltmain.sh' not found

I've installed mingw and msys by using mingw-get-setup.exe. I've also installed Autotools(autoconf, automake,m4,libtool) into C:\/opt/…

c autotools automake mingw32 libtool
What is the difference between LDADD and LIBADD?

I'm trying to setup an automake project that uses a mix of libtool libraries and exectuables, and I'm having a …

c++ automake libtool
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 = …

c++ autotools autoconf flags automake
when I do a 'make install' it does not create Directory

This is my first attempt with autoconf, I changed and added some different code to a utility then I took …

permissions file-permissions automake permission-denied make-install
How do I specify in a Makefile.am script that I only want to compile object .o files?

I have a Makefile.am which will be responsible for building a final application binary: project/src/Makefile.am Also …

makefile automake gnu-make
gcov: producing .gcda output from shared library?

Is it possible to produce gcov data files (.gcda files) by running an executable linked to a shared library built …

c++ gcc code-coverage automake gcov