source: rtems/c/src/librdbg/configure.ac @ dc17e8ed

4.104.114.84.95
Last change on this file since dc17e8ed was dbba1d6d, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:46

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • include/rdbg/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/rdbg/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/rdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/rdbg/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/i386/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/m68k/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • src/powerpc/new_exception_processing/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-librdbg],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([src/awk.svc])
8RTEMS_TOP(../../..)
9AC_CONFIG_AUX_DIR(../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.6])
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_NETWORKING
17RTEMS_ENABLE_RDBG
18RTEMS_ENABLE_BARE
19
20RTEMS_ENV_RTEMSBSP
21
22RTEMS_CHECK_CPU
23RTEMS_CANONICAL_HOST
24
25RTEMS_PROG_CC_FOR_TARGET
26RTEMS_CANONICALIZE_TOOLS
27
28AC_CHECK_PROG(RPCGEN,rpcgen,rpcgen,no)
29AC_PROG_AWK
30
31if test "$RPCGEN" = "no"; then
32  AC_MSG_WARN([** missing rpcgen, required to build librdbg **])
33  rpctools="no"
34fi
35if test "$AWK" = "no"; then
36  AC_MSG_WARN([** missing awk, required to build librdbg **])
37  rpctools="no"
38fi
39
40AM_CONDITIONAL(RPCTOOLS, test "$rpctools" != "no")
41
42RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
43RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
44RTEMS_CHECK_NETWORKING(RTEMS_BSP)
45RTEMS_CHECK_RDBG(RTEMS_BSP)
46
47AM_CONDITIONAL(HAS_RDBG,test "$HAS_RDBG" = "yes")
48
49RTEMS_PROJECT_ROOT
50
51# Explicitly list all Makefiles here
52AC_CONFIG_FILES([Makefile
53include/Makefile
54include/rdbg/Makefile
55include/rdbg/i386/Makefile
56include/rdbg/powerpc/Makefile
57include/rdbg/m68k/Makefile
58src/Makefile
59src/i386/Makefile
60src/i386/any/Makefile
61src/powerpc/Makefile
62src/powerpc/new_exception_processing/Makefile
63src/m68k/Makefile
64src/m68k/any/Makefile
65])
66AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.