Re: Errors with simple example
> To build Makefiles I run: > % automake > % autoconf > % ./configure I found out myself: I forgot to run aclocal, just didn't see it when reading the tutorial the first time. Eddy
Errors with simple example
Hi, I am just getting started with the GNU autotools and I can't get my simple example to work. Here is what I am stuck with: 'hello.c' #include int main() { printf("Howdy world!\n"); } 'Makefile.am' bin_PROGRAMS = hello