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

File: [local] / OpenXM / src / ox_toolkit / make-configure (download)

Revision 1.2, Mon Jun 28 12:39:11 2004 UTC (19 years, 11 months ago) by ohara
Branch: MAIN
Changes since 1.1: +15 -2 lines

We imported automake/libtool technology to the ox_toolkit package.
Libtool-ja.txt is the working log. (written in Japanese)

REMARK:
A shared object "libox.so" will be installed to ${OpenXM_HOME}/lib.

#!/bin/sh
# $OpenXM: OpenXM/src/ox_toolkit/make-configure,v 1.2 2004/06/28 12:39:11 ohara Exp $

case "$1" in
"-f"|"--force")
   automake
   autoconf
   ./configure --prefix="$(cd ../..; pwd)"
   ;;
*)
if [ ! -f ./.configure_done ]; then 
    if [ ! -f ./Makefile.in ]; then 
		automake 
  	fi
    if [ ! -x ./configure ]; then 
		autoconf 
  	fi
    ./configure --prefix="$(cd ../..; pwd)"
fi
    ;;
esac
touch .configure_done