blob: 7849a858962c4dd50413479030ecc51149afa132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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 ;;
changequote(,)dnl
i[345]86-*-*) MY_TARGET=i386 ;;
changequote([,])dnl
sparc-*-*) MY_TARGET=sparc ;;
tahoe-*-*) MY_TARGET=tahoe ;;
vax-*-*) MY_TARGET=vax ;;
ns32k-*-*) MY_TARGET=ns532;;
*-*-*) MY_TARGET=dummy ;;
esac
AC_SUBST(MY_TARGET)
AC_OUTPUT(Makefile)
|