📄 bootstrap
字号:
#! /bin/sh# helps bootstrapping libtool, when checked out from CVS# requires GNU autoconf and GNU automakefind . \( -name autom4te.cache -o -name libtool \) -print | xargs rm -rfile=Makefile.in: ${ACLOCAL=aclocal}: ${AUTOMAKE=automake}: ${AUTOCONF=autoconf}: ${AUTOHEADER=autoheader}rm -f acinclude.m4ln -s libtool.m4 acinclude.m4# fake the libtool scriptstouch ltmain.shtouch libtoolize$ACLOCAL$AUTOMAKE --gnu --add-missing --copy$AUTOCONFfor sub in libltdl demo depdemo mdemo cdemo; do cd $sub rm -f acinclude.m4 Makefile cat ../libtool.m4 > acinclude.m4 test "$sub" = libltdl && cat ../ltdl.m4 >> acinclude.m4 $ACLOCAL test "$sub" = libltdl && $AUTOHEADER $AUTOMAKE --gnits --add-missing $AUTOCONF cd ..donerm -f ltmain.sh libtoolize Makefileexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -