Login | Join | OpenID | RSS Feed
autotools
최광용 Lv. 14 llllllllll 
252 hit since 2005/02/21 19:13

Linux를 쓰는 사람이라면 누구나 아래와 같은 명령을 실행하여 프로그램을 설치한 경험이 있을 것이다.

$ ./configure
$ make
$ make install

autotools는 이런 식으로 배포되는 프로그램을 만들 때 사용된다.
autoconf, automake등을 사용하여 Makefile을 만들어주게 되는 것인데,
아래의 사이트에 설명이 잘 되어 있다.

http://blog.naver.com/juhani.do?Redirect=Log&logNo=140003698935
http://ashell.2bwithu.net/ja/gaja_files/autoconf

간단하게는 hello.c 예제를 보면 이해가 될 것이다.