6.44.1. Installation of Automake
        
        
          Prepare Automake for compilation:
        
        
./configure --prefix=/usr --docdir=/usr/share/doc/automake-1.15.1
        
          Compile the package:
        
        
make
        
          There are a couple of tests that incorrectly link to the wrong
          version of the flex library, so we temporarily work around the
          problem. Also, using the -j4 make option speeds up the tests, even
          on systems with only one processor, due to internal delays in
          individual tests. To test the results, issue:
        
        
sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &:" t/lex-{clean,depend}-cxx.sh
make -j4 check
        
          Three tests are known to fail in the LFS environment: check12.sh,
          subobj.sh, and check12-w.sh.
        
        
          Install the package:
        
        
make install