Writing Portable C++ with GNU Autotools:
autoscan
autoscan.log
configure.scan
mv configure.scan configure.in
AM_INIT_AUTOMAKE
AC_PROG_LIBTOOL
aclocal
autom4te.cache
aclocal.m4
autoconf
configure
libtoolize -c -f
config.guess
config.sub
ltmain.sh
autoheader
config.h.in
automake --add-missing (它需要 makefile.am 文件)
install-sh -> /usr/share/automake-1.9/install-sh
missing -> /usr/share/automake-1.9/missing
depcomp -> /usr/share/automake-1.9/depcomp
INSTALL -> /usr/share/automake-1.9/INSTALL
COPYING -> /usr/share/automake-1.9/COPYING
makefile.in
touch NEWS AUTHORS ChangeLog README
CXX="ccache distcc" ./configure --prefix=(make install 的安装目录)
libtool
config.status
make
make install 安装
make dist 构建 .tar.gz
阅读(589) | 评论(0) | 转发(0) |