autoconf
  2016年05月07日 更新
  
autoconfとは
  インストール
  homebrewを使っていれば,それが楽.
  
  
	% brew install autoconf
  
  使っていなければ,手作業で入れる.
  
  
	% curl -O http://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.gz
	% tar xvfz autoconf-latest.tar.gz
	% cd autoconf-x.xx
	% ./configure
	% make
	% sudo make install
  
  bin/にパスを通せば、どこからでも使えます.
  
  
使い方
  参考文献
	本家のページ