darling-gdb/gprof/configure.in

25 lines
471 B
Plaintext
Raw Normal View History

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.3)dnl
AC_INIT(gprof.c)
1991-07-23 19:09:22 +00:00
CC=${CC-cc}
AC_PROG_CC
1991-07-23 19:09:22 +00:00
AC_CANONICAL_SYSTEM
AC_ARG_PROGRAM
1991-07-23 19:09:22 +00:00
case "${target}" in
alpha-*-*) MY_TARGET=alpha ;;
1995-06-16 19:30:48 +00:00
changequote(,)dnl
i[345]86-*-*) MY_TARGET=i386 ;;
1995-06-16 19:30:48 +00:00
changequote([,])dnl
sparc-*-*) MY_TARGET=sparc ;;
tahoe-*-*) MY_TARGET=tahoe ;;
vax-*-*) MY_TARGET=vax ;;
1995-09-05 19:04:22 +00:00
ns32k-*-*) MY_TARGET=ns532;;
*-*-*) MY_TARGET=dummy ;;
esac
AC_SUBST(MY_TARGET)
AC_OUTPUT(Makefile)