📄 buildconf.sh
字号:
#! /bin/sh## Build aclocal.m4 from libtool's libtool.m4#ltpath=`conftools/PrintPath libtoolize`ltpath=`dirname $ltpath`ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4echo "Incorporating $ltfile into aclocal.m4 ..."echo "dnl THIS FILE IS AUTOMATICALLY GENERATED BY buildconf.sh" > aclocal.m4echo "dnl edits here will be lost" >> aclocal.m4cat $ltfile >> aclocal.m4## Create the libtool helper files## Note: we always replace the files, and we copy (rather than link) them.#echo "Copying libtool helper files ..."$ltpath/libtoolize --force --copy## Generate the autoconf header (include/apu_config.h) and ./configure#echo "Creating config.h ..."autoheaderecho "Creating configure ..."### do some work to toss config.cache?autoconf
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -