source: rtems/c/src/lib/libbsp/arm/armulator/configure.ac @ b18646c9

Last change on this file since b18646c9 was b18646c9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/06/03 at 10:45:24

2003-03-06 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove AC_CONFIG_AUX_DIR.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp-arm-armulator],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17# From newlib
18# Select which debug protocol is being used.
19# ARM_RDP_MONITOR selects the Demon monitor.
20# ARM_RDI_MONITOR selects the Angel monitor.
21# If neither are defined, then hard coded defaults will be used
22# to create the program's environment.
23
24RTEMS_BSPOPTS_SET([ARM_RDI_MONITOR],[*],[1])
25RTEMS_BSPOPTS_HELP([ARM_RDI_MONITOR],
26[If defined enable Angel monitor support])
27
28RTEMS_BSPOPTS_SET([ARM_RDP_MONITOR],[*],[])
29RTEMS_BSPOPTS_HELP([ARM_RDP_MONITOR],
30[If defined enable Demon monitor support])
31
32# Explicitly list all Makefiles here
33AC_CONFIG_FILES([Makefile
34clock/Makefile
35console/Makefile
36include/Makefile
37start/Makefile
38startup/Makefile
39timer/Makefile
40wrapup/Makefile])
41AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.