I've stumbled on a make file "Makefile.am" and I tried to use "make -f Makefile.am" on it to no avail. What am I doing wrong?
|
|
|
It's an automake script/makefile. You can learn everything about automake, autoconf, libtool and such through the called autobook. Basically, the steps would be to run automake, then autoconf, then configure, then make to build the software you have. These steps are neccessary to build the configure script, that automatically search for needed libraries and such on your system. The process is not easy, unless your software also includes an already generated "configure" file. If so, the only thing you have to do (mostly) is to just run |
|||
|
|
You stumbled upon an automake file, which is used to create a Makefile from the source, in this case Makefile.am. From http://developer.gnome.org/doc/GGAD/z70.html, they explain it as:
Basically, you should run 'automake' to make the Makefile, and you will probably run into the same situation with the configure script with 'autoconf'. Automake: http://www.gnu.org/software/automake/ Wikipedia article on automake: http://en.wikipedia.org/wiki/Automake |
|||
|
|
|
If you are trying to compile a 3rd party application from source, there is usually a 'configure' script located at the top of the source tree. If you run After running the script, you'll get standard Makefile's generated from the automake files. From there, you can just execute Standard build steps for linux packages are:
|
|||||
|
|
see "man automake" or google for autotools. likely you'll want to run something like autogen.sh first. |
|||
|