Annotation of OpenXM/src/oxc/make-configure, Revision 1.2
1.1 ohara 1: #!/bin/sh
1.2 ! takayama 2: # $OpenXM: OpenXM/src/oxc/make-configure,v 1.1 2000/10/13 06:05:11 ohara Exp $
1.1 ohara 3:
1.2 ! takayama 4: case "$1" in
! 5: "-d"|"--disable-shared")
! 6: if [ ! -f ./.configure_done ]; then
! 7: if [ ! -f ./Makefile.in ]; then
! 8: automake
! 9: fi
! 10: if [ ! -x ./configure ]; then
! 11: autoconf
! 12: fi
! 13: touch ${cache_file}
! 14: ./configure --enable-shared=no
! 15: fi
! 16: ;;
! 17: *)
1.1 ohara 18: if [ ! -f ./.configure_done ]; then
19: if [ ! -x ./configure ]; then
20: autoconf
21: fi
22: ./configure
23: fi
1.2 ! takayama 24: ;;
! 25: esac
1.1 ohara 26: touch .configure_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>