GNU automake 설치 방법

Posted by [하늘이]
2015. 12. 11. 15:56 IT/C, C++
반응형

패키지는 아래 순서로 설치해야만 오류가 나지 않습니다.

M4 -> autoconf -> automake
 


@ 패키지들을 다운로드 받아서 /bin 폴더에 넣습니다.

그리고, 압축을 각 폴더 명으로 풀어주세요.

http://ftp.gnu.org/gnu/m4/
ftp://ftp.gnu.org/gnu/autoconf/
ftp://ftp.gnu.org/gnu/automake/


현재 최신 버전은 아래와 같아요.
m4-1.4.17.tar.gz
autoconf-2.69.tar.gz
automake-1.9.tar.gz


압축은 아래 커맨드로 풀어주세요.
tar xvfz m4-1.4.17.tar.gz
tar xvfz autoconf-2.69.tar.gz
tar xvfz automake-1.9.tar.gz


GNU M4 설치
http://iam777.tistory.com/254

autoconf 설치

http://iam777.tistory.com/255


automake 설치
$ cd automake-1.11.6
$ ./configure --prefix=/usr
$ make && make install


참고 블로그

http://blog.naver.com/PostView.nhn?blogId=realmass&logNo=10159484988


반응형

'IT > C, C++' 카테고리의 다른 글

[C/C++] XOR 연산자 '^'  (0) 2016.10.20
[DBUS] DBUS 설명 사이트 정보  (0) 2016.01.27
[GLib] IO Channels: GLib Reference Manual  (0) 2016.01.26
GNU autoconf 설치방법  (0) 2015.12.11
GNU M4 설치 방법  (0) 2015.12.11