Annotation of OpenXM/src/ox_toolkit/make-configure, Revision 1.2
1.1 ohara 1: #!/bin/sh
1.2 ! ohara 2: # $OpenXM: OpenXM/src/ox_toolkit/make-configure,v 1.1 2000/02/08 20:34:14 ohara Exp $
! 3:
! 4: case "$1" in
! 5: "-f"|"--force")
! 6: automake
! 7: autoconf
! 8: ./configure --prefix="$(cd ../..; pwd)"
! 9: ;;
! 10: *)
1.1 ohara 11: if [ ! -f ./.configure_done ]; then
1.2 ! ohara 12: if [ ! -f ./Makefile.in ]; then
! 13: automake
! 14: fi
1.1 ohara 15: if [ ! -x ./configure ]; then
16: autoconf
17: fi
1.2 ! ohara 18: ./configure --prefix="$(cd ../..; pwd)"
1.1 ohara 19: fi
1.2 ! ohara 20: ;;
! 21: esac
1.1 ohara 22: touch .configure_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>