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

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

Revision 1.1, Tue Feb 1 09:59:43 2000 UTC (24 years, 3 months ago) by takayama
Branch: MAIN

OpenXM/kxx starts to use autoconf.
After updating, run ./make-configure in the directory src/kxx or
type in "make configure-kxx" in the directory src.

#!/bin/sh
# $OpenXM: OpenXM/src/kxx/make-configure,v 1.1 2000/02/01 09:59:43 takayama Exp $
if ! test -f ./.configure_done 
then 
 if test -f configure 
 then 
   ./configure 
  else 
    autoconf 
    ./configure 
  fi
fi
touch .configure_done