mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
7858d8dc8a
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.
23 lines
443 B
Plaintext
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)
|