autogen.sh

来自「QT 开发环境里面一个很重要的文件」· Shell 代码 · 共 26 行

SH
26
字号
#! /bin/sh# a quick hack script to generate necessary files from # auto* tools.## WARNING: if you run this you will change the versions# of the tools which are used and, maybe, required!        touch Makefile.am configure.ac{	echo "running libtoolize" >&2	libtoolize --copy --automake} && {	echo "running aclocal" >&2	aclocal} && {	echo "running autoheader [ignore the warnings]" >&2	autoheader} && {	echo "running automake" >&2	automake --foreign -a -c} && {	echo "running autoconf" >&2	autoconf} &&	echo "autogen complete" >&2 ||	echo "ERROR: autogen.sh failed, autogen is incomplete" >&2

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?