* gen-c-prog.awk: Changed reference to "make-c-prog.awk" in
[deliverable/binutils-gdb.git] / gprof / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.3)dnl
3 AC_INIT(gprof.c)
4
5 CC=${CC-cc}
6 AC_PROG_CC
7
8 AC_CANONICAL_SYSTEM
9 AC_ARG_PROGRAM
10
11 case "${target}" in
12 alpha-*-*) MY_TARGET=alpha ;;
13 i[345]86-*-*) MY_TARGET=i386 ;;
14 sparc-*-*) MY_TARGET=sparc ;;
15 tahoe-*-*) MY_TARGET=tahoe ;;
16 vax-*-*) MY_TARGET=vax ;;
17 ns532-*-*|*-pc532-*) MY_TARGET=ns532;;
18 *-*-*) MY_TARGET=dummy ;;
19 esac
20
21 AC_SUBST(MY_TARGET)
22 AC_OUTPUT(Makefile)
This page took 0.035 seconds and 5 git commands to generate.