blob: c46fe4cc23c32a6719464ebc039e56b883fe71eb [file] [log] [blame]
yaberauneyaef772532009-10-09 17:55:43 +00001==============================
2About configuration
3==============================
4
5If you want to use auto configuration, be sure autoconf and automake are
6installed. Then run:
7 $ make autotools
8 $ ./configure
9 $ make all
10
11If you want to use default configuration, autoconf is not needed. Just run:
12 $ touch include/config.h.default
13 $ make config.h
14 $ make all
15
16If make all is failed even if you use the auto configuration, please, report
17your issue to the ltp developers with config.log, generated by running the
18configure script.
19
20==============================
21Using non-standard tools
22==============================
23
24Some systems (RHEL 4, etc) only have outdated tools available, due to
25licensing concerns. So if you happen to install these tools in a non-standard
26spot, here's how you bootstrap LTP with these tools:
27
28 $ make \
29 ACLOCAL=/path/to/aclocal \
30 AUTOCONF=/path/to/autoconf \
31 AUTOHEADER=/path/to/autoheader \
32 AUTOMAKE=/path/to/automake \
33 autotools