Top "Autotools" questions

Autotools is a suite of programming tools (mainly autoconf, automake, and libtool) designed to assist in making source-code packages portable to many Unix-like systems.

Autotools: how to cleanup files created by "./configure" in lighttpd project?

I'm trying out lighttpd for an embedded Linux project. I got the latest source package and started writing a master …

makefile autotools configure lighttpd undo
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 …

c++ autotools autoconf automake
How can I define #define in my Make files

In my c/c++ files, there are multiple #define. As an example: #ifdef LIBVNCSERVER_HAVE_LIBZ /* some code */ #ifdef LIBVNCSERVER_…

c makefile autotools
What's the point of aclocal?

What's the point of the aclocal script and aclocal.m4 file, in context of using autotools to configure source files? …

autotools m4
Error in automake

I’ve trying to create install package for hello world sample C program. I’ve done following staps. autoscan mv …

configure autotools autoconf automake
Can't run Makefile.am, what should I do?

I got a C project to compile and run in Linux. It is a very big project with many subdirectories. …

c++ linux makefile autotools
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. …

tar autotools autoconf automake
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
Where to add a CFLAG, such as -std=gnu99, into an autotools project

I have a simple Autotools C project (not C++). CFLAGs (by inspection) seem to be -g -O2. I want all …

c autotools
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