regenconf.sh

来自「xgrafix 是PTSG模拟程序中的图形截面库 改版本是最新版本」· Shell 代码 · 共 47 行

SH
47
字号
#!/bin/sh######################################################################## File:         regenconf.sh## Purpose:      to regenerate autotools files## Version:      $Id: regenconf.sh,v 1.12 2004/07/02 13:54:12 cary Exp $## Copyright 2003, Tech-X Corporation######################################################################## Get rid of old filesecho Remaking all configuration filesmydir=`dirname $0`# Creating new files for this platformfor i in aclocal \	autoheader \	"rm -rf autom4te.cache autom4te-*.cache" \	autoconf \	config/automake.sh; do  echo $i  $idone# See if libtoolize should be runres=`grep LIBTOOL configure.in`if test -n "$res"; then  ver=`grep VERSION= config/ltmain.sh | sed 's/VERSION=//'`  # echo version is $ver  echo Redoing libtoolize  if [ "`uname`" == "Darwin" ]  then     # cmd="glibtoolize --force --copy"    # JRC: trying libtool 1.5.4    cmd="libtoolize --force --copy"  else    cmd="libtoolize --force --copy"  fi  echo $cmd  $cmdfi

⌨️ 快捷键说明

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