[BACK]Return to make-configure CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_toolkit

Diff for /OpenXM/src/ox_toolkit/make-configure between version 1.1 and 1.3

version 1.1, 2000/02/08 20:34:14 version 1.3, 2004/12/15 12:17:32
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $OpenXM$  # $OpenXM: OpenXM/src/ox_toolkit/make-configure,v 1.2 2004/06/28 12:39:11 ohara Exp $
   
   prefix=`cd ../..; pwd`
   case "$1" in
   "-f"|"--force")
      automake
      autoconf
      ./configure --prefix=${prefix} --with-gmp
      ;;
   *)
 if [ ! -f ./.configure_done ]; then  if [ ! -f ./.configure_done ]; then
       if [ ! -f ./Makefile.in ]; then
                   automake
           fi
     if [ ! -x ./configure ]; then      if [ ! -x ./configure ]; then
                 autoconf                  autoconf
         fi          fi
     ./configure      ./configure --prefix=${prefix} --with-gmp
 fi  fi
       ;;
   esac
 touch .configure_done  touch .configure_done

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>