[LINK] autotools
Programming/C / 2008/05/17 13:54
AutoTools-KLDP (http://wiki.kldp.org/wiki.php/DocbookSgml/Autotools-KLDP)
GNU AUTOCONF, AUTOMAKE, and LIBTOOL 다운로드 (http://sources.redhat.com/autobook/autobook_1_5.zip)
GNU AUTOCONF, AUTOMAKE, and LIBTOOL 번역 (http://wariua.springnote.com/pages/1041972)
Autotools Tutorial (http://www.lrde.epita.fr/%7Eadl/autotools.html)
Asianux 게시판 (http://www.haansoftlinux.com/service/technical/product_Server.php)
실행 순서
GNU AUTOCONF, AUTOMAKE, and LIBTOOL 다운로드 (http://sources.redhat.com/autobook/autobook_1_5.zip)
GNU AUTOCONF, AUTOMAKE, and LIBTOOL 번역 (http://wariua.springnote.com/pages/1041972)
Autotools Tutorial (http://www.lrde.epita.fr/%7Eadl/autotools.html)
Asianux 게시판 (http://www.haansoftlinux.com/service/technical/product_Server.php)
- aclocal : configure.ac --> aclocal.m4
- autoheader : configure.ac + aclocal.m4 --> config.h.in
- autoconf : configure.ac + aclocal.m4 --> configure
- automake : configure.ac + aclocal.m4 + Makefile.am --> Makefile.in
- configure : Makefile.in --> Makefile
실행 순서
aclocal
autoheader
autoconf
automake --add-missing --copy
./configure
make
make check
make install
autoheader
autoconf
automake --add-missing --copy
./configure
make
make check
make install
TAG
autotools


