blob: 1259073aec6aa7db84aaf6d85183b91159dae97d (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
dnl Process this file file with autoconf to produce a configure script.
dnl This file is a shell script fragment that supplies the information
dnl necessary to tailor a template configure script into the configure
dnl script appropriate for this directory. For more information, check
dnl any existing configure script.
AC_PREREQ(1.118)
AC_INIT(gdb.base)
CC=${CC-cc}
AC_SUBST(CC)
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
AC_CANONICAL_SYSTEM
# start-sanitize-gdbtk
# place. This is only so testing with a freshly built expect binary
# in the object tree will work.
CY_AC_PATH_TCLH
# end-sanitize-gdbtk
# Directories to use in all configurations.
configdirs="gdb.base gdb.c++ gdb.disasm gdb.chill"
# Directories to use for a configuration which uses stabs.
stabsdirs="gdb.stabs"
# this section is for targets that use stabs
# add stabs tests for appropriate targets
case "${target}" in
rs6000-*-aix*) configdirs="${configdirs} ${stabsdirs}" ;;
*-*-bsd*) configdirs="${configdirs} ${stabsdirs}" ;;
*-*-go32*) configdirs="${configdirs} ${stabsdirs}" ;;
*-*-linux*) configdirs="${configdirs} ${stabsdirs}" ;;
*-*-lynxos*) configdirs="${configdirs} ${stabsdirs}" ;;
*-sun-*) configdirs="${configdirs} ${stabsdirs}" ;;
hppa*-*-*) configdirs="${configdirs} ${stabsdirs}" ;;
*) if test "x${with_stabs}" = x"yes" ; then
configdirs="${configdirs} ${stabsdirs}"
fi ;;
esac
# configure the subdirectories too
AC_CONFIG_SUBDIRS($configdirs)
dnl AC_SUBST(gdb_target_cpu)
AC_OUTPUT(Makefile)
|