darling-gdb/gprof/configure.in
J.T. Conklin 7858d8dc8a * gen-c-prog.awk: Changed reference to "make-c-prog.awk" in
comment emitted by this script to gen-c-prog.awk.

* Makefile.in, configure.in: Converted to use autoconf.
* configure: New file, generated with autoconf 2.3.
* config/{mt-alpha, mt-dummy, mt-i386, mt-ns532, mt-sparc,
  mt-tahoe, mt-vax}: Removed.
1995-04-19 18:27:35 +00:00

23 lines
443 B
Plaintext

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.3)dnl
AC_INIT(gprof.c)
CC=${CC-cc}
AC_PROG_CC
AC_CANONICAL_SYSTEM
AC_ARG_PROGRAM
case "${target}" in
alpha-*-*) MY_TARGET=alpha ;;
i[345]86-*-*) MY_TARGET=i386 ;;
sparc-*-*) MY_TARGET=sparc ;;
tahoe-*-*) MY_TARGET=tahoe ;;
vax-*-*) MY_TARGET=vax ;;
ns532-*-*|*-pc532-*) MY_TARGET=ns532;;
*-*-*) MY_TARGET=dummy ;;
esac
AC_SUBST(MY_TARGET)
AC_OUTPUT(Makefile)